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

Announcements
ALERT: QlikView server communication interruptions following Microsoft Windows Domain Controller security updates
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? 

Labels (1)
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