Hello All,
I am trying to do some deep linking in my app where if the user clicks on an English link(with a parameter called "ID"), it takes them to a specific screen in the English version of my form. If they click on the Spanish link (with a parameter called "SPID", it should take them to a specific screen in the spanish version of the form.
My StartScreen property is:
If(
Value(Param("ID"))<>0, CloseContacts,Welcome);
If
(Value(Param("SPID"))<>0, CloseContacts_Spanish,'Welcome_1-SPANISH'
)
But obviously, the system will not compute this. What is the best syntax to use in this scenario?
Thank you so much as always.
Solved! Go to Solution.
Hi @xrxr031 ,
Try > 0 rather than <> 0, but you are going to have to send another parameter value if you want the Spanish Welcome screen
If(
Value(Param("ID")) > 0,
CloseContacts,
Value(Param("SPID")) > 0,
CloseContacts_Spanish,
Welcome
)
Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs Up.
Visit my blog Practical Power Apps
Hi @xrxr031 ,
Try > 0 rather than <> 0, but you are going to have to send another parameter value if you want the Spanish Welcome screen
If(
Value(Param("ID")) > 0,
CloseContacts,
Value(Param("SPID")) > 0,
CloseContacts_Spanish,
Welcome
)
Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs Up.
Visit my blog Practical Power Apps
My apologies for the delay. Thank you so much for your help. This worked for me.
Have a great day.
User | Count |
---|---|
252 | |
102 | |
94 | |
50 | |
37 |