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

Announcements
Write Table now available in Qlik Cloud Analytics: Read Blog
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