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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

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
July PBI25 Carousel

Power BI Monthly Update - July 2025

Check out the July 2025 Power BI update to learn about new features.

Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 community update carousel

Fabric Community Update - June 2025

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