Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
if {?PromptField} = "*" then true
else {DataField} = {?PromptField}
if {?PromptField} = "ALL" then true
else {DataField} = {?PromptField}
if {?Parm1} = "ALL" then
true
else
// The rest will only be considered IF Param1 is not ALL
{Field1} = {?Parm1} and
if {?Parm2} = "ALL" then
true
else
// The next lines will ONLY be tested for IF param1
// is not ALL and param2 is not ALL
{Field2} = {?Parm2} and
{Field3} = {?Parm3} and
{Field4} = {?Parm4}