Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Set analysis concept with text

I am over analyzing what I thought was a simple task...

For those of you in healthcare you are probably familiar with Meaningful Use.  I have an excel spread sheet that has all the details on the measures for Stage two.

I would like to create an informative tab in my MU Dashboard that lists breaks down the details of each measure.  I loaded the excel spread sheet into my load script and now I can't figure out how to use it.

I am trying to use set analysis on text fields and failing miserably...

The concept I would like to use is simple...

sum({<Measure={'P208'}>}Requirements)

The desired result is a blurb in the spread sheet :

 

MeasureDefinitionRequirements
P208Record demographicsMore than 80% of all unique
  patients seen by the EP have demographics recorded as structured data.

But I keep getting '0' and I am assuming its because I can't SUM the Requirements....

Any guidance would be greatly appreciated

1 Solution

Accepted Solutions
Carlos_Reyes
Partner - Specialist
Partner - Specialist

Use MaxString instead of Sum... although perhaps there are more efficient functions to deal with strings but I always use MaxString when I need to get that kind of result.

View solution in original post

3 Replies
Carlos_Reyes
Partner - Specialist
Partner - Specialist

Use MaxString instead of Sum... although perhaps there are more efficient functions to deal with strings but I always use MaxString when I need to get that kind of result.

Aurelien_Martinez
Partner - Specialist II
Partner - Specialist II

Hi,

Use Concat or Only like:

Only({<Measure={'P208'}>}Requirements)


OR


Concat({<Measure={'P208'}>}Requirements)


Regards,

Aurélien

Help users find answers! Don't forget to mark a solution that worked for you!
Not applicable
Author

Thanks Carlos, that worked perfectly!