Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.

Reply
Anonymous
Not applicable

Subtract one column from constant value

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;

Capture.PNG

 

 

 

 

 

But instead I get list of all the drivers that are not a part of the selected time frame like this:

Capture.PNG

1 ACCEPTED SOLUTION
Anonymous
Not applicable

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

View solution in original post

1 REPLY 1
Anonymous
Not applicable

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

Helpful resources

Announcements
September Power BI Update Carousel

Power BI Monthly Update - September 2025

Check out the September 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors