Skip to main content
Announcements
Qlik Connect 2025: 3 days of full immersion in data, analytics, and AI. May 13-15 | Orlando, FL: Learn More
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)