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

Power BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.

Reply
Anonymous
Not applicable

Subtract Measure Values from Column

Is there a way to subtract column values [Rules] from a measure?

 

My measure which gives me number of working days in a month is:

 

Measure 5 = 
VAR _Month = CALCULATE(COUNT(DimDate[Days in Month]),FILTER(DimDate,'DimDate'[WorkingDays] <>BLANK()))
VAR _lastday=
COUNTROWS(
FILTER(DimDate,'DimDate'[WorkingDays] <>BLANK()))
RETURN
IF ( ISBLANK ( [AbsentByDay] ), BLANK (), _lastday )

 

Thanks,

 

https://www.dropbox.com/s/vojq25pkazt4lmj/Sample5.pbix?dl=0

3 REPLIES 3
Anonymous
Not applicable

@amitchandak I think I have it here:

Measure 9 = 

IF(HASONEVALUE('Employee Absence Full Table'[Rules]),[Measure 5],
SUMX(
ALLSELECTED('Employee Absence Full Table'),
[Measure 5]))- SUMX(ALLSELECTED('Employee Absence Full Table'[Rules]),'Employee Absence Full Table'[Rules])
But I end up with this, is there a way to just remove the values if measure 5 is blank?
Subtract output filter need1.PNG
 
 
 

 

amitchandak
Super User
Super User

@Anonymous , The output will be measure not column.

Can you share output in table format?

Full Power BI Video 20 Hours YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube
Anonymous
Not applicable

Subtract output.PNG

Helpful resources

Announcements
June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

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

June 2025 community update carousel

Fabric Community Update - June 2025

Find out what's new and trending in the Fabric community.