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
electrobrit
Post Patron
Post Patron

Multiple conditions

I am trying to get a table where I have standard working hours, Total PTO, Adjusted Hours (Std hours-PTO), then a final column where if the resource type is "Contractor" or a specific person, ex. "Andy", it equals Hours Worked.
Otherwise, it's the Adjusted Hours

I have done most measures in a Key measures table. Then I have a detail table where I'm trying to do the conditional column (Contractor or Andy=hours worked, else Adjusted Hours) with the measures and detail. 
I've tried

Column 2 = SWITCH(
    TRUE(),
    'TimeDetail'[full_name]="Andy"|| TimeDetail[ResourceType]="Contractor", SUMX('--Key Measures',[TotalHoursWorked]),
 [AdjustedHours]
)

I've tried this and get same results

Column 2 = SWITCH(
    TRUE(),
    TimeDetail[ResourceType]= "Contractor", [TotalHoursWorked],
    TimeDetail[full_name]= "Andy", [TotalHoursWorked],
    TimeDetail[ResourceType]= "Employee", [AdjustedHours])

I've looked at the data and it's not the data, but some of the column values (conditonal column) are off.
In the screenshot, they should equal the total hours worked columnn 
Is there another way to do this conditional column or can anyone tell what might be wrong?

electrobrit_0-1664566975469.png

 


1 ACCEPTED SOLUTION
Dinesh_Suranga
Continued Contributor
Continued Contributor

@electrobrit 

Hi

Try this.

Column 2 =IF(SELECTEDVALUE(TimeDetail[full_name])= "Andy", [TotalHoursWorked],
IF(SELECTEDVALUE(TimeDetail[ResourceType]) = "Contractor", [TotalHoursWorked],[AdjustedHours]))

Thnak you.

 

View solution in original post

2 REPLIES 2
Dinesh_Suranga
Continued Contributor
Continued Contributor

@electrobrit 

Hi

Try this.

Column 2 =IF(SELECTEDVALUE(TimeDetail[full_name])= "Andy", [TotalHoursWorked],
IF(SELECTEDVALUE(TimeDetail[ResourceType]) = "Contractor", [TotalHoursWorked],[AdjustedHours]))

Thnak you.

 

added as a measure in the key measures table and worked perfectly. THANK YOU

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.