Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hi
I am trying to create a measure that changes based on the number of months selected in a slicer. For example if only one month is selected, the target is 100, if two months it is 200, etc. Can someone help with this please?
Thanks
Solved! Go to Solution.
Try this:
NewMeasure = COUNTROWS(VALUES(Table[YearMonth)) * 100
That's great, thank you!