Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
cancel
Showing results for 
Search instead for 
Did you mean: 
ZoeM
Specialist
Specialist

Searching for an item which has a carriage return

Hi Community.

I have a field which has values with carriage return and I am trying to build a set analysis expression that will search for specific strings in the filed and I cannot seem to get it to work.

Any Ideas? In the below, the field "Main Causal Factor" contains string values that have carriage return i.e. "Late Issue

Resolution"

Count({$<[#of Days Post VPP]={'>14'},[Date Type]={'VPP Dates'},[Main Causal Factor]={'Late Issue

Resolution'}>}[Gateways])/Count(TOTAL{$<[Main Causal Factor]=-{' '},[Date Type]={'VPP Dates'}>}[Gateways])

Thanks for any help rendered.

1 Solution

Accepted Solutions
sunny_talwar

How about if you do this

Count({$<[#of Days Post VPP] = {'>14'}, [Date Type] = {'VPP Dates'}, [Main Causal Factor] = {'Late*Issue*Resolution'}>} [Gateways])/Count(TOTAL{$<[Main Causal Factor] = -{' '}, [Date Type] = {'VPP Dates'}>} [Gateways])

View solution in original post

2 Replies
sunny_talwar

How about if you do this

Count({$<[#of Days Post VPP] = {'>14'}, [Date Type] = {'VPP Dates'}, [Main Causal Factor] = {'Late*Issue*Resolution'}>} [Gateways])/Count(TOTAL{$<[Main Causal Factor] = -{' '}, [Date Type] = {'VPP Dates'}>} [Gateways])

ZoeM
Specialist
Specialist
Author

Thanks Sunny, works like a charm