Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Nov 8, 2022 10:37:08 AM
Jun 27, 2016 11:58:43 PM
Qlik Sense data files (.QVF) may contain sensitive organizational data. As such, even though Qlik Technical Support has a very strict Non-Disclosure Agreement, it may be desired to scrambled specific data before submitting apps Qlik Sense support for investigation.
Unfortunately, data scrambling is not available as a feature in the current Qlik Sense product.
This document shares a method and related scripts on how to scramble sensitive data in Qlik Sense app, until the feature is built into Qlik Sense Enterprise for Windows. For scrambling in Qlik Cloud, check this article.
To access the examples, visit the community post or download it from here.
Environment:
Steps:
Binary lib://Binary/<filename>.qvf; $(Include=lib://Binary/scramble.qvs); CALL Scramble('<name of metadatafile>.xlsx');
Other consideration:
If Qlik Sense has "Legacy Mode" enabled, above steps 1~6 can be skipped and use file path directly in the load script in step 7, for example code as below:
Binary C:\Users\xxx\abc\<filename>.qvf; $(Include=C:\Users\xxx\abc\scramble.qvs); CALL Scramble('C:\Users\xxx\abc\<name of metadatafile>.xlsx');
NOTE: Sometime sensitive data such as organization name will also be in metadata's table or field name. User will need to manually call rename() function in load script to remove it;