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

Level up your Power BI skills this month - build one visual each week and tell better stories with data! Get started

Reply
Preeti_Yadav
Resolver I
Resolver I

IF returning Incorrect totals

Hi .

I am calculating Amount using 

 

Amount=

IF(

FIRSTNONBLANK('HRDataSen DaxLaborDetail'[OTMult],0)=1.00,

SUM('HRDataSen DaxLaborDetail'[WorkedHours])*SUM('HRDataSen DaxLaborDetail'[CalcRate]),

(SUM('HRDataSen DaxLaborDetail'[WorkedHours])*SUM('HRDataSen DaxLaborDetail'[CalcRate]))/1.5.

My individual row values are returning correct output,however it is giving me incorrect totals.
I tried wrapping it under SUMX but to no avail.

Thanks,
Preeti

1 ACCEPTED SOLUTION

@Preeti_Yadav what is the granularity?
Like each row has a unique value in ADPworklocationdescroption column or it's a combination of also EmployeeID and ApplyDate.
Anyway try:

Amount =
SUMX (
    SUMMARIZE (
        'Table Name',
        'Table Name'[ADPworklocationdescroption],
        'Table Name'[EmployeeID],
        'Table Name'[ApplyDate]
    ),
    CALCULATE(
    	IF(
			
			FIRSTNONBLANK('HRDataSen DaxLaborDetail'[OTMult],0)=1.00,
			
			SUM('HRDataSen DaxLaborDetail'[WorkedHours])*SUM('HRDataSen DaxLaborDetail'[CalcRate]),
			
			SUM('HRDataSen DaxLaborDetail'[WorkedHours])*SUM('HRDataSen DaxLaborDetail'[CalcRate])/1.5
		)
		
	)
)


Will apprecuiate Your Kudos on my messages 🙂

View solution in original post

3 REPLIES 3
SpartaBI
Community Champion
Community Champion

@Preeti_Yadav SUMX should be the solution for that, but need to see how exacty you used it in the visual.
Can you give more info about how the visual looks like and what are the names of the column in play in that visual.

Hi   

below is the provided screenshot , please have a look

 

 

Preeti_Yadav_0-1655982362470.jpeg

@SpartaBI

 

regards,

Preeti Yadav

@Preeti_Yadav what is the granularity?
Like each row has a unique value in ADPworklocationdescroption column or it's a combination of also EmployeeID and ApplyDate.
Anyway try:

Amount =
SUMX (
    SUMMARIZE (
        'Table Name',
        'Table Name'[ADPworklocationdescroption],
        'Table Name'[EmployeeID],
        'Table Name'[ApplyDate]
    ),
    CALCULATE(
    	IF(
			
			FIRSTNONBLANK('HRDataSen DaxLaborDetail'[OTMult],0)=1.00,
			
			SUM('HRDataSen DaxLaborDetail'[WorkedHours])*SUM('HRDataSen DaxLaborDetail'[CalcRate]),
			
			SUM('HRDataSen DaxLaborDetail'[WorkedHours])*SUM('HRDataSen DaxLaborDetail'[CalcRate])/1.5
		)
		
	)
)


Will apprecuiate Your Kudos on my messages 🙂

Helpful resources

Announcements
April Power BI Update Carousel

Power BI Monthly Update - April 2026

Check out the April 2026 Power BI update to learn about new features.

Fabric SQL PBI Data Days

Data Days 2026 coming soon!

Sign up to receive a private message when registration opens and key events begin.

New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.