Skip to main content
Announcements
Accelerate Your Success: Fuel your data and AI journey with the right services, delivered by our experts. Learn More
cancel
Showing results for 
Search instead for 
Did you mean: 
James_B
Contributor II
Contributor II

How To separate AGGR sums by month for a line chart

Sum(If(Aggr(Sum(Time),RS12Processes) < 85*[Process Time]/100 ,1,0))

 

above is the expression I used to tell me how many jobs are under 85%  when I select the month from the filter.

but when I use this expression for my line chart for a monthly update it sums for the whole year and doesn't break it down by month.

how can I fix this issue? 

Please help 😊

Labels (2)
1 Solution

Accepted Solutions
justISO
Specialist
Specialist

Hi, maybe add additional aggregation by months too:

Sum(If(Aggr(Sum(Time),RS12Processes, your_month_field) < 85*[Process Time]/100 ,1,0))

View solution in original post

2 Replies
justISO
Specialist
Specialist

Hi, maybe add additional aggregation by months too:

Sum(If(Aggr(Sum(Time),RS12Processes, your_month_field) < 85*[Process Time]/100 ,1,0))

James_B
Contributor II
Contributor II
Author

Thankyou 😊