Skip to main content
Announcements
Have questions about Qlik Connect? Join us live on April 10th, at 11 AM ET: SIGN UP 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