Hello,
I have a number value field in my sharepoint list.
It stores numbers that are growing when user click button.
I need to check in one button if this value is 0. and if it is block a button.
So I thought that I can use DisplayMode of button and use this function:
If(DataCardValue23.Text > 0; DisplayMode.Edit;DisplayMode.Disabled)
Unfortunately I am receiving an error that Text value is invalid it expects Number.
How can I check if a value is 0?