Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Is there a way to search through multiple qvw's for a specific field?
If you want to search load and search the script for a group of QVWs, you can use this free utility.
Qlikview Cookbook: Script Repository https://qlikviewcookbook.com/recipes/download-info/script-repository/
If you want to load a table of QVW names and Fieldnames from QVW datamodels, you can use a script like this:
Set vDir = C:/temp; // Directory of QVWs. DIRECTORY $(vDir);FOR Each file in FileList('$(vDir)/*.qvw') LOAD FileName() as QvwName, Name as FieldName FROM [$(file)] (XmlSimple, Table is [DocumentSummary/FieldDescription]) Where IsSystem = 'false';Next file
-Robhttp://www.easyqlik.comhttp://masterssummit.comhttp://qlikviewcookbook.com