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

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
Jase
Contributor
Contributor

Case sensitivity

Hi,

I am trying to pick out all case varients of the word DaaS (i.e. DAAS, DaAs) from a text string. So far I have 

=count({<TITLE={"*DaaS*"}>} TITLE)

but this only returns those fields that match the case sensitivity exactly.

 

I have been searching for a solution but everything I see refers to changing the case at the point of loading the data. This is not an option.

 

Thanks in advance

 

Jason

 

Labels (1)
1 Reply
jwjackso
Specialist III
Specialist III

The WildMatch function is case insensitive.

 

=Sum(If(WildMatch(TITLE,'*DAAS*') > 0,1,0))