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.