Forum Discussion
tschm1880
Feb 07, 2023Copper Contributor
Populate a value based on a number value in a text field
I had this working in an older version of this app but can't be bothered to reset all my progress to rollback. Even looking at the github commits (added git control), all the code looks the same. ...
- Feb 07, 2023
Hi tschm1880
which property do you declare using the formula
If( Value(Label4_3.Text)>3, {Value:"Completed"}, {Value:"Not Completed"} )
?
It does not seem to be the "Default" property of your "Status_Datacard1", as this is set to ThisItem.Status.
I used that formula on "Default" of "Status_Datacard1", and it works fine.
Best Regards,
Sven
SvenSieverding
Bronze Contributor
Hi tschm1880
which property do you declare using the formula
If(
Value(Label4_3.Text)>3,
{Value:"Completed"},
{Value:"Not Completed"}
)
?
It does not seem to be the "Default" property of your "Status_Datacard1", as this is set to ThisItem.Status.
I used that formula on "Default" of "Status_Datacard1", and it works fine.
Best Regards,
Sven
tschm1880
Feb 07, 2023Copper Contributor
SvenSieverding awesome, that was my issue. I applied this formula as the default on the text box within my status_datacard1. Thank you!