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

Announcements
Join us to spark ideas for how to put the latest capabilities into action. Register here!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

In a straight table I am trying to display all the orgizations that have a support type of org

In a straight table I am trying to display all the orgizations that have a support type of org

only({$<[Support Type]={'=Org'}>}Org)

7 Replies
israrkhan
Specialist II
Specialist II

Expression is not correct, try like below..


=only({$<[Support Type]={'Org'}>}Org)

Anonymous
Not applicable
Author

Chris

Assuming org is a dimension then make it a Calculated Dimension something like :

     if ( org = 'Org' , org )

And then remember to tick the 'Suppress When Value is Null'.

Best Regards,     Bill

Clever_Anjos
Employee
Employee

If you have more than one Organization, Only will return null.

Try =concat({$<[Support Type]={'Org'}>}Org,',')

Not applicable
Author

still no luck here is the spreadsheet

DivisionSupportsSupport Type
D1D2Division
Not applicable
Author

Still no luck here is the spreadsheet

DivisionSupportsSupport Type
D1D2Division
Not applicable
Author

Still no luck here is the spreadsheet

DivisionSupportsSupport Type
D1D2Division
Not applicable
Author

When you say "support type of org", do you mean you want to see only instances where Support Type = 'Org' or just Support Type <> Null value?

If so, you could use smthg like this:

Only({$<[Support Type]={'*'}>}  Division)