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

Don't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.

Reply
ephramz
Helper II
Helper II

How to count the number of times a unique value appear in two columns

How do i include a calculated column/ calculated field in the data model such that it calculates the number of times (for example in Op No. column ,the value '9999' and in Equipment column, the value '215320307' appears, for this case which should show as '3'). Show in the picture below.

And from there I want to get the highest time value between CN47N Actual Time column and IW49 Actual Time column and sum them up for rows that '9999' in Op No column and '215320307' in Equipment column appear and divide by the count '3' that was calculated from the calculated column/ calculated field earlier.

 

unnamed.png

1 ACCEPTED SOLUTION
v-luwang-msft
Community Support
Community Support

Hi @ephramz ,

Try dax like this :

Count =
CALCULATE (
    COUNT ( 'ENGG VM_TRM'[OP.No.] ),
    FILTER (
        'ENGG VM_TRM',
        'ENGG VM_TRM'[Equipment] = EARLIER ( 'ENGG VM_TRM'[Equipment] )
            && 'ENGG VM_TRM'[OP.No.] = EARLIER ( 'ENGG VM_TRM'[OP.No.] )
    )
)

See the below ,a sample:

vluwangmsft_0-1630655064162.png

 

Did I answer your question? Mark my post as a solution!


Best Regards

Lucien

View solution in original post

1 REPLY 1
v-luwang-msft
Community Support
Community Support

Hi @ephramz ,

Try dax like this :

Count =
CALCULATE (
    COUNT ( 'ENGG VM_TRM'[OP.No.] ),
    FILTER (
        'ENGG VM_TRM',
        'ENGG VM_TRM'[Equipment] = EARLIER ( 'ENGG VM_TRM'[Equipment] )
            && 'ENGG VM_TRM'[OP.No.] = EARLIER ( 'ENGG VM_TRM'[OP.No.] )
    )
)

See the below ,a sample:

vluwangmsft_0-1630655064162.png

 

Did I answer your question? Mark my post as a solution!


Best Regards

Lucien

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

Jan25PBI_Carousel

Power BI Monthly Update - January 2025

Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.

December 2024

A Year in Review - December 2024

Find out what content was popular in the Fabric community during 2024.