Skip to main content
Announcements
See what Drew Clarke has to say about the Qlik Talend Cloud launch! READ THE BLOG
cancel
Showing results for 
Search instead for 
Did you mean: 
varunreddy
Creator III
Creator III

Ignore dimension

Hi Guys,

I have created a bar chart.

Dimensions used:

Month

CDE Name

Expression Used:

aggr(sum(Failing Records),CDE,Month)

This is working fine. When I select a Month, the report is displaying data for one particular month. I want to ignore selections based on Month.

Is this possible?

Thanks in advance!

Kind Regards,

Varun

1 Solution

Accepted Solutions
sunny_talwar

Can you try this:

Sum({<Report Date]>} Aggr(Sum({<Report Date]>} [Ruleset Failing Records]), [CDE Name], [Report Date]))

or

Only({<Report Date]>} Aggr(Sum({<Report Date]>} [Ruleset Failing Records]), [CDE Name], [Report Date]))

View solution in original post

22 Replies
sunny_talwar

Can you try this:

Sum({<Month>} [Failing Records])

or

Sum({<Month>} Aggr(Sum({<Month>} [Failing Records]), CDE, Month))

Chanty4u
MVP
MVP

try

Only({<Month-={'Monthname'}>}Failing Records)

Chanty4u
MVP
MVP


=Only(aggr(Total <Failing Records>),CDE,Month)

varunreddy
Creator III
Creator III
Author

Hi Sunny,

This is not working

varunreddy
Creator III
Creator III
Author

Hi Chanty,

I want to ignore any selection for Month

sunny_talwar

Would you be able to show a sample showing the issue? There is not other way I can think of ignoring selections.

hcabrera
Contributor III
Contributor III

May be:

aggr(sum({<Month=>}Failing Records),CDE,Month)


HC.

varunreddy
Creator III
Creator III
Author

Hi Henry,

Already tried this. But it is not working