To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
I am trying to add the last or Max Date the 300k Club Count was recorded at each Recruiter and YearMonth. When I try and put the YearMonth in the values box in the Matrix and select latest I get the last date that Recruiter had activity, and not when his Total Revenue was above 300k, per YearMonth.
Thanks in advence for looking at this.
Solved! Go to Solution.
Please try this measure to get your desired result:
Latest 300K YearMonth =
VAR __300kmos =
FILTER ( ALL ( 'Date'[YearMonth] ), [Total Revenue] > 300000 )
RETURN
MAXX ( __300kmos, 'Date'[YearMonth] )
If this works for you, please mark it as the solution. Kudos are appreciated too. Please let me know if not.
Regards,
Pat
To learn more about Power BI, follow me on Twitter or subscribe on YouTube.
Please try this measure to get your desired result:
Latest 300K YearMonth =
VAR __300kmos =
FILTER ( ALL ( 'Date'[YearMonth] ), [Total Revenue] > 300000 )
RETURN
MAXX ( __300kmos, 'Date'[YearMonth] )
If this works for you, please mark it as the solution. Kudos are appreciated too. Please let me know if not.
Regards,
Pat
To learn more about Power BI, follow me on Twitter or subscribe on YouTube.
This worked perfectly. Thank you so much!
User | Count |
---|---|
77 | |
67 | |
65 | |
50 | |
27 |