Question

I have a PowerApp which is working really well so far, it is based on a SharePoint list which holds the data. There is a date field (Paid Date) which defaults to 31/12/2001 for some reason, and I want this hidden from view until there is a useful value in it because the default date is confusing people.

I want to make Paid Date visible depending on a field called Stage being set to 'Stage 7' but can't seem to work out how.

So: how do I set the visibility of a field based on the value entered in another?

Était-ce utile?

La solution

You need to set the Visible property of your Paid Date field based on the value of your field Stage.

To check the value of Stage is equal to "Stage 7" or not, you need to use IF function.

You need to use your formula in Visible property of Paid Date field something like below:

IF(Stage.Value = "Stage 7", true, false)

Also, another way is to use Variable in PowerApps and set its value onStart of your PowerApp to desired default value and then use the condition based on the variable value.

Reference:

Make field visible depended on other field - Powerapps.

Licencié sous: CC-BY-SA avec attribution
Non affilié à sharepoint.stackexchange
scroll top