Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Join us in Bucharest on Sept 18th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
nickedw0
Creator
Creator

Conditional script to test for server or Desktop

Our Server environment prevents  using Store to save data to the Server. How can I create an IF statement around the STORE statement to only run if executed on Desktop? 

1 Solution

Accepted Solutions
marcus_sommer

Maybe with something like:

if computername() <> 'Server' then

     store ...

end if

- Marcus

View solution in original post

1 Reply
marcus_sommer

Maybe with something like:

if computername() <> 'Server' then

     store ...

end if

- Marcus