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
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
Employee
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
Employee
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
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.