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
singhpratiksha8
Frequent Visitor

How to compare three column and get repeated value detail for 1 particular column ?

new.JPG

Need Help-  i have chassie no of vehicles , service type of vehicle and city .. i need output as if city changes for same chassie number, then it must come as "True",if not then "False" (service type could be anything ) in another calulated column .. i created calculated column as service_status_city .. But even after changing city its showing false only ... please let me know correct DAX for the same  e.g

 

 

1 ACCEPTED SOLUTION
v-jiascu-msft
Microsoft Employee
Microsoft Employee

Hi @singhpratiksha8,

 

Try out this formula please. It can be a measure or a calculated column.

Measure =
IF (
    CALCULATE (
        DISTINCTCOUNT ( Table1[City] ),
        ALL ( Table1[Service type], Table1[City] )
    )
        > 1,
    TRUE (),
    FALSE ()
)

How_to_compare_three_column_and_get_repeated_value_detail_for

 

Best Regards,

Dale

Community Support Team _ Dale
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-jiascu-msft
Microsoft Employee
Microsoft Employee

Hi @singhpratiksha8,

 

Try out this formula please. It can be a measure or a calculated column.

Measure =
IF (
    CALCULATE (
        DISTINCTCOUNT ( Table1[City] ),
        ALL ( Table1[Service type], Table1[City] )
    )
        > 1,
    TRUE (),
    FALSE ()
)

How_to_compare_three_column_and_get_repeated_value_detail_for

 

Best Regards,

Dale

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

@v-jiascu-msft  Thanx i had solved it before only . request to help me with other query i just have posted at 3:34 pm (INDIA)

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

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

August 2025 community update carousel

Fabric Community Update - August 2025

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