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

Announcements
Only at Qlik Connect! Guest keynote Jesse Cole shares his secrets for daring to be different. Learn More!
cancel
Showing results for 
Search instead for 
Did you mean: 
hopkinsc
Partner - Specialist III
Partner - Specialist III

help with MATCH function

hi all,

I am having trouble with the MATCH function.

It needs 2 parameters to work but i want the 2nd parameter to be null.

how can i achieve this?

I am currently trying.

WHERE match(Scope,)


but its throwing up an error .

1 Solution

Accepted Solutions
abeyphilip
Creator II
Creator II

Hi,

If your objective is to find nulls, then you can use -  isnull(Scope).

Or else for blanks (single blank) - match(scope,' ')

Regards,

Abey

View solution in original post

4 Replies
abeyphilip
Creator II
Creator II

Hi,

If your objective is to find nulls, then you can use -  isnull(Scope).

Or else for blanks (single blank) - match(scope,' ')

Regards,

Abey

bbi_mba_76
Partner - Specialist
Partner - Specialist

Hi,

I think you have to change the function: for null values you could use the isnull() function or len(Scope)<1

Anonymous
Not applicable

Actually what is your requirement.

Please explain in brief.

Regards

Nitin

MayilVahanan

Hi

Try like this

WHERE Len(Trim(Scope)) = 0;

Thanks & Regards, Mayil Vahanan R
Please close the thread by marking correct answer & give likes if you like the post.