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!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hi,
I have the following logic below that I have attempeted to write within Power BI but not quite getting the correct syntax for it, can anyone please advise how I resolve the attempt below into the correct syntax for Power BI so it works within my new measure please?
if(Year='2018',
(count(Customer_No)
/ count(TOTAL ,Year='2018, Benchmark)),
if(Year='2019',
(count(Customer_No)
/ count(TOTAL ,Year = '2019', Benchmark))))
Solved! Go to Solution.
hi, @KC_1987
for if(Year='2018', in measure, you should use SELECTEDVALUE or MAX or MIN Function in it.
For example:
if(SELECTEDVALUE(Year)='2018',
If not your case, please share a simple sample pbix file and expected output.
Best Regards,
Lin
hi, @KC_1987
for if(Year='2018', in measure, you should use SELECTEDVALUE or MAX or MIN Function in it.
For example:
if(SELECTEDVALUE(Year)='2018',
If not your case, please share a simple sample pbix file and expected output.
Best Regards,
Lin
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!