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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources 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