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!
So I have a column as Driver Name, Avg Driver Score.
I want to perform (Avg Driver Score) - 4.85 and this value should appear next to all the drivers selected for a particular month.
When I do Measure = [Avg.DriverScore]-4.85, I get a list with all the driver names and not just the drivers selected for that Time frame.
For e.g.
I want something like this;
But instead I get list of all the drivers that are not a part of the selected time frame like this:
Solved! Go to Solution.
HI @Anonymous ,
Perhaps you can add if statement with conditions to skip formula calculation on blank records:
Measure = IF ( [Avg.DriverScore] <> BLANK (), [Avg.DriverScore] - 4.85 )
Regards,
Xiaoxin Sheng
HI @Anonymous ,
Perhaps you can add if statement with conditions to skip formula calculation on blank records:
Measure = IF ( [Avg.DriverScore] <> BLANK (), [Avg.DriverScore] - 4.85 )
Regards,
Xiaoxin Sheng
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!