Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
marcodelgrosso
Contributor II
Contributor II

One chart with filter date range and another one with the last month of filter date range

Hey,

I've two charts, the first one displays the values about filter date range (I did it), but the second one is a barchart that has to refer only to the last month of filter date range. How can I do that?

As in the following example: the filter  range date is Feb 22 to May 22 but the barchart has to display the sum of data about only May 22.

Labels (1)
1 Solution

Accepted Solutions
MartW
Partner - Specialist
Partner - Specialist

This is quite easy, you need some set analysis within the barchart (meassures)

I don't know the field you use in you meassure and how the month name is but the set analysis would be something like this

 

Sum ( { <  Monthfield= {"$(=max(Monthfield))"} > } Measure field)

View solution in original post

2 Replies
MartW
Partner - Specialist
Partner - Specialist

This is quite easy, you need some set analysis within the barchart (meassures)

I don't know the field you use in you meassure and how the month name is but the set analysis would be something like this

 

Sum ( { <  Monthfield= {"$(=max(Monthfield))"} > } Measure field)

marcodelgrosso
Contributor II
Contributor II
Author

Perfect solution! It works such as I wanted to.

Thank you so much