Power Apps With Function
June 28, 2024•152 words
The Microsoft Power Apps With function is a powerful way to divide complex formulas into smaller pieces. It is useful when used within a ForAll, since we can’t set variables within a ForAll. Since the formula is contained, it is preferred over context variables created using UpdateContext or global variables created using Set.
The syntax looks like this:
With(
{
myValue1: //add some logic
},
//Do something with the myValue1result
)
You can also have nested With functio...
Read post