Skip to main content
Announcements
Qlik Launches Open Lakehouse and advanced agentic AI experience in Qlik Answers! | LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
Jase
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

The WildMatch function is case insensitive.

 

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