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
Anonymous
Not applicable

Calculated column returning a single value based on filters from two other columns

Hello,

 

I would like to make an operation (substraction) on values from a same column and then show it on a different column.

I developped a small example for better understanding of what I'm trying to do:

 

Raw Data:

Tool #OperationStart
Tool 1A5/12/2019
Tool 1B5/14/2019
Tool 1C5/18/2019
Tool 2A5/15/2019
Tool 2B5/18/2019
Tool 2C

5/25/2019

 

What I'm trying to calculate:

Tool #Turn Around Time
Tool 16
Tool 210

 

TAT = Diff between start time of operation C and start time of operation A

 

I could work on my raw data (excel spreadsheet) directly to work this out but I wanted to know if I could do something in POWER BI directly

 

Thanks for the help

 

Sebastien

1 ACCEPTED SOLUTION
v-piga-msft
Resident Rockstar
Resident Rockstar

Hi @Anonymous ,

For your requirement, please create the measure below.

Measure =
VAR s_a =
    CALCULATE (
        MAX ( 'Table1'[Start] ),
        FILTER ( ALLEXCEPT ( 'Table1', Table1[ool #] ), 'Table1'[Operation] = "A" )
    )
VAR s_c =
    CALCULATE (
        MAX ( 'Table1'[Start] ),
        FILTER ( ALLEXCEPT ( 'Table1', Table1[ool #] ), 'Table1'[Operation] = "C" )
    )
RETURN
    DATEDIFF ( s_a, s_c, DAY )

Here is the output.

Capture.PNG

Best Regards,

Cherry

 

Community Support Team _ Cherry Gao
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

1 REPLY 1
v-piga-msft
Resident Rockstar
Resident Rockstar

Hi @Anonymous ,

For your requirement, please create the measure below.

Measure =
VAR s_a =
    CALCULATE (
        MAX ( 'Table1'[Start] ),
        FILTER ( ALLEXCEPT ( 'Table1', Table1[ool #] ), 'Table1'[Operation] = "A" )
    )
VAR s_c =
    CALCULATE (
        MAX ( 'Table1'[Start] ),
        FILTER ( ALLEXCEPT ( 'Table1', Table1[ool #] ), 'Table1'[Operation] = "C" )
    )
RETURN
    DATEDIFF ( s_a, s_c, DAY )

Here is the output.

Capture.PNG

Best Regards,

Cherry

 

Community Support Team _ Cherry Gao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

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.