I have a radio field where the user can select two options:
"without estimate"
or
"there is budget forecast in the requesting area"
What I need is:
When the user selects on the radio: "there is a budget forecast in the requesting area" and the value field is blank or with a value equal to "0" (zero), the button has the property "Disabled", if the user selects " without estimate " the button has the" Edit "property.
I tried this code:
If(IsBlank(DataCardValue163_6.Text)=radioFilho_1.Selected.Value="há previsão orçamentária na área solcitante";DisplayMode.Disabled;DisplayMode.Edit)||If(Value(DataCardValue163_6.Text)=0&&radioFilho_1.Selected.Value="há previsão orçamentária na área solcitante";DisplayMode.Disabled;DisplayMode.Edit)
That would be the first case above ...
---------------------------------------------------------------------------------------------------------------
In the second case, thanks to the help of yashag2255, he was able to select the user comparison problem in two fields, well, in this second case...
I need you to compare the case above together with the case comparison of two equal users in field, that is, the same, logic ...
And I appreciate the help @yashag2255 !