Hi,
I want to use else if condition over Display Mode property of field, e.g. If <Condition>, <DisplayMode.Disabled> else if <Condition>, <DisplayMode.Disabled> else <DisplayMode.Edit>.
Thanks
Hi, would like to know how to use the 'if else' condition in Power Apps?
I have this logic that if this is a new request the status should be 'Not Yet Started' but once it is submitted the status should be the one that chose by the requestor.
For Example: When I open this app and want to create a new one the status should be 'Not yet Started' then after I populate all the fields and in status dropdown I chose 'Approval Request' then once I click the submit button the status should be 'Approval Request'. Thank you in advance.
Hi, i want to use below sql query to dax function CASE WHEN "DimCard"."CARDSTATUS"= 'A' THEN count("CardsTxn"."CARDACCOUNTNUMBER") ELSE null END / count("CardsTxn"."CARDACCOUNTNUMBER")
Hi! You can try something like this:
Thanks, it is working.
Hi @Muhammad_Ali,
The else if condition is not supported within PowerApps currently. I think the If function could achieve your needs within PowerApps.
The standard formula format of If function as below:
If( Condition, ThenResult [, DefaultResult ] ) If( Condition1, ThenResult1 [, Condition2, ThenResult2, ... [ , DefaultResult ] ] )
On your side, please take a try to set the DisplayMode property of the field to following formula:
If(
Condition1,
DisplayMode.Disabled,
Condition2,
DisplayMode.Disabled,
DisplayMode.Edit
)
More details about the If function in PowerApps, please check the following article:
Best regards,
Kris
Hi Muhammad_Ali,
There are a couple of ways to do this using either If() or Switch() functions.
The If() function was also updated to operate much like a Switch statement, so you can probably just use If()
If( Condition, ThenResult [, DefaultResult ] )
If( Condition1, ThenResult1 [, Condition2, ThenResult2, ... [ , DefaultResult ] ] )
or looking at it another way;
If(condition, trueresult, condition, trueresult, condition, trueresult, defaultresult)
For your example;
If(condition, DisplayMode.Disabled, condition, DisplayMode.Disabled, condition, DisplayMode.Edit)
Hope this helps,
RT
WarrenBelz
42
Most Valuable Professional
mmbr1606
41
Super User 2025 Season 1
MS.Ragavendar
36