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

Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.

Reply
gboss87
New Member

Trying to get a total with several requirements

I am trying to get a total of Agreement Hours but need to filter several requirements.  Here is the SQL

sum(case when Time_Entry.Agr_Header_RecID is not null and AGR_Hours = Hours_Bill and Billable_Flag = 'True' and Time_Entry.Company_RecID <> 250 then AGR_Hours else 0 end) AGR_Hours_Total

 

and here is what I have tried to do in DAX

 

Actual_AGR_Hours_total = Calculate(Sum(Switch(not(ISBLANK('Time Table'[AGR_Header_RecID])) & 'Time Table'[AGR_Hours] = 'Time Table'[Hours_Bill] & 'Time Table'[Billable_Flag] = True & 'Time Table'[company_RecID] <> 250, 'Time Table'[AGR_Hours] , 0)))
 
The table names are different from the SQL and what I pulled into Power BI fyi.  'Time Table' is correct.
1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi  @gboss87 ,

I created some data:

vyangliumsft_0-1666251890879.png

Here are the steps you can follow:

1. Create calculated column.

Actual_AGR_Hours_total =
var _if=
  FILTER('Time Table',
    'Time Table'[Agr_Header_RecID]<>BLANK() &&
    'Time Table'[AGR_Hours]='Time Table'[Hours_Bill]&&
    'Time Table'[Billable_Flag]="True"&&
    'Time Table'[Company_RecID]<>250)
return
SUMX(_if,[AGR_Hours])

2. Result:

vyangliumsft_1-1666251890881.png

If you need pbix, please click here.

 

 

Best Regards,

Liu Yang

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly

View solution in original post

2 REPLIES 2
Anonymous
Not applicable

Hi  @gboss87 ,

I created some data:

vyangliumsft_0-1666251890879.png

Here are the steps you can follow:

1. Create calculated column.

Actual_AGR_Hours_total =
var _if=
  FILTER('Time Table',
    'Time Table'[Agr_Header_RecID]<>BLANK() &&
    'Time Table'[AGR_Hours]='Time Table'[Hours_Bill]&&
    'Time Table'[Billable_Flag]="True"&&
    'Time Table'[Company_RecID]<>250)
return
SUMX(_if,[AGR_Hours])

2. Result:

vyangliumsft_1-1666251890881.png

If you need pbix, please click here.

 

 

Best Regards,

Liu Yang

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly

lukiz84
Memorable Member
Memorable Member

Why do you use SWITCH?

 

Actual_AGR_Hours_total = 
   CALCULATE(
      SUM(
         'Time Table'[AGR_Hours],
         FILTER(
            'Time Table',
            NOT(ISBLANK('Time Table'[Agr_Header_RecID])),
            'Time Table'[AGR_Hours] = 'Time Table'[Hours_Bill],
            'Time Table'[Billable_Flag] = TRUE,
            'Time Table'[company_RecID] <> 250
         )
      )
    )

Helpful resources

Announcements
FabCon Global Hackathon Carousel

FabCon Global Hackathon

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

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.