Re: How to update status based on calculated field powerapps
I am not exactly sure but I'll give solutions to the two things I think you're asking for.
To update a certain field until it gets to a certain value.
On the onstart, set the value of a variable
Set(various, 0)
Then whenever an action is taken that needs to update that variable,
Update({varCount: varCount + 1})
So when the action runs the count is updated till you hit your desired result.
As for updating a field based on another.
Initialize another variable.
Set(varStatus, Blank())
Since it's a calculator field so the onchange property of I'm guessing a text input field you'll write an if statement. If(value(textinput.text) = 50, Set(varStatus, true), Set(varStatus, false))
Then set the visible property of the field to varStatus. Thus if the value 50 is reached, it sets to true and the field becomes visible.
Also this works for the situation where you want to patch a value based on the value of another filed
On the default property of the new field, write the if statement
If(value(calculatedfeild.text) > 50, "Pass", "Fail").