The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
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!