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

Announcements
Check out our latest virtual session where BARC Fellow, Doug Laney, highlighted the opportunities data monetization can offer enterprises. Watch here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

exists to see if feild exists, not record

is this possible?

1 Reply
Not applicable
Author

Hi,

Something like this may help:

let fieldExists = 0;
let n = NoOfFields('Table');

for i = 1 to $(n)


let s = FieldName($(i), 'Table');
if Match('$(s)', 'Field') then
     let fieldExists = 1;
     exit For
endif

next