Hi all.
I have a dropdown column with Items = "Yes/No".
And then, I have another column that accepts number data type only.
All columns are connected to SharePoint as data source.
My problem occur when user choose "No" for the dropdown, the second column should be invisible and the value should be blank. So, I made my coding like this:
Column2.Update = If(HasTargetDropDown.Selected.Value = "Yes", Value(TargetTrainingHour.Text),Blank())
For testing, when i tried to modify the dropdown selection from "Yes" to "No", I observe that the data for dropdown has changed in the sharepoint (whch is correct), but the data for second column doesnt change in the sharepoint.
I think it is because blank are null data type, not number. Is there any solution for this?