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

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
Ankhi
Creator
Creator

List Box Help Needed

Hi All,

I need a help on creating a list box on a Measure value. 

I have the below table. There are many other measures and dimensions. For sample I have just given 3.

Project Number   Project Type  Available Budgets

1234                             T                         6000

4321                             T                        -5000

The available budget measure is a expression shown below. I would like to have a list box which will have values like 

'Overbudget Projects' and on selecting that value will only show me the projects that are in overbudgets range . In this case 4321 with -5000

I was trying with something like this . The variable contains the same Available Budget Expression. but it is not working.

 

=IF($(VOverBudget) < 0 ,'Over Budget Projects',null())

Available Budget Expression

Sum ({$<
Type = {'Budget'},
Month =,
FY Year =,
[Budget Type] = {'CBT'},
[Budget End Date] = {"<=$(=(YearEnd(AddMonths(today(),24))))"}
>}
Amount)

-

Sum ({$<
Type = {'Act'},
Month =,
FY Year =
>}
Amount)

Thanks in advance.

Regards

Ankhi

Labels (2)
1 Solution

Accepted Solutions
rwunderlich
MVP
MVP

=Aggr( IF($(VOverBudget) < 0 ,'Over Budget Projects',null()), [Project Number])

-Rob

View solution in original post

2 Replies
rwunderlich
MVP
MVP

=Aggr( IF($(VOverBudget) < 0 ,'Over Budget Projects',null()), [Project Number])

-Rob

Ankhi
Creator
Creator
Author

Thanks a lot @rwunderlich  . It worked.