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!Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register 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
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 52 | |
| 51 | |
| 39 | |
| 15 | |
| 14 |
| User | Count |
|---|---|
| 93 | |
| 84 | |
| 34 | |
| 29 | |
| 25 |