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.
{table.id} = Switch({?Parameter Type} = 'ID',{?Parameter Value})
Or
{table.name} = Switch({?Parameter Type} = 'Name',{?Parameter Value})
(
If {?Parameter Type} = 'ID'
Then {table.ID} = {?Parameter Value}
Else If {?Parameter Type} <> 'ID'
Then False
)
Or
(
If {?Parameter Type} = 'Name'
Then {table.Name} = {?Parameter Value}
Else If {?Parameter Type} <> 'Name'
Then False
)