I have cards in a power app that have their visibility dependent on other cards data:
If(DataCardValue8.Selected.Value="Yes", true, false) - this will show the the specific card.
How can i change this to make it visible just if the field is filled in with any value. ( i have several values, YES, NO, N/A etc)
I dont want to list them all out to make visible if the selected value is YES or NO or N/A etc
Is there away to make visible if DataCardValue8 contains any value?
thanks
Solved! Go to Solution.
There are some great options using blank checks, etc.
https://docs.microsoft.com/en-us/powerapps/maker/canvas-apps/functions/function-isblank-isempty
!IsBlank(DataCardValue8.Selected.Value)
The formula above will result in a True if it has data, or a False, if it does not.
Apply this to a Visible property, or as needed, to have something happen if the value is selected or not.
There are some great options using blank checks, etc.
https://docs.microsoft.com/en-us/powerapps/maker/canvas-apps/functions/function-isblank-isempty
!IsBlank(DataCardValue8.Selected.Value)
The formula above will result in a True if it has data, or a False, if it does not.
Apply this to a Visible property, or as needed, to have something happen if the value is selected or not.
brilliant. thanks!
The first Microsoft-sponsored Power Platform Conference is coming in September. 100+ speakers, 150+ sessions, and what's new and next for Power Platform.
Power Platform release plan for the 2022 release wave 2 describes all new features releasing from October 2022 through March 2023.
User | Count |
---|---|
200 | |
96 | |
56 | |
51 | |
41 |
User | Count |
---|---|
265 | |
157 | |
83 | |
80 | |
56 |