@jneuen
If
(
IsBlank(Param("supportticketid")
,Param("supportticketidNC")
,Param("supportticketidFB")
)
if you want more If's, based on what's given in the original formula I have no idea what you're trying to do, so I'll give a general idea instead for now:
//pseudo formula
If
(
IsBlank(Param("supportticketid")
,If
(
IsBlank(Param("supportticketidFB"))
,doSomethingIfFBisBlank
,If
(
IsBlank(Param("supportticketidNC"))
,doSomethingIfNCisBlank
,Param("supportticketidNC")
)
)
)
Even based on recent reply you just gave, I am unsure what you're trying to do exactly, but try the below as general approach
//pseudo formula
If
(
IsBlank(Param("standard_param")
,Navigate(WelcomeScreen)
,If
(
IsBlank(Param("NC"))
,doSomethingIfNCisBlank
,If
(
IsBlank(Param("FB"))
,doSomethingIfFBisBlank
,doSomethingIfFBisNotBlank
)
)
)
See if approach above helps @jneuen
You should be aware of the App.StartScreen property
If you're trying to decide which screen, just use App.StartScreen property
//pseudo formula
If
(
IsBlank(Param("standard_param")
,WelcomeScreen
,If
(
IsBlank(Param("NC"))
,SomeScreen2
,If
(
IsBlank(Param("FB"))
,SomeScreen3
,SomeScreen4
)
)
)
See if it helps @jneuen