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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

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
v-yangliu-msft
Community Support
Community Support

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
v-yangliu-msft
Community Support
Community Support

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
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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

April Fabric Community Update

Fabric Community Update - April 2024

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

Top Solution Authors