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

Adding a condition in distinct union function

Hi everybody,

I am new in Power Bi & appreciate if anyone help me here:

I want to union the codes in 3 seperate tables and set the below formula which works correctly. 

 

Maintenance WO =  DISTINCT(union(FILTER(distinct(' Employee Hours'[Code]),'Employee Hours'[Code]<>""),FILTER(distinct(' Asset Hours'[Code]),'Asset Hours'[Code]<>"")))

 

Now, I want to add another condition for each table:

 

 

Simply, I just want to union the codes of two below tables if in employee table, crew type be MGMT and in Asset table, the crew type be Maint. Off course, empty codes must not be considered.

Capture12.PNG

No idea what to do. your help would be highly appreciated.

 

 

1 ACCEPTED SOLUTION

Hi @Anonymous,

 

It works in my test. Did you make any changes?

Adding_a_condition_in_distinct_union_function

 

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

5 REPLIES 5
v-jiascu-msft
Employee
Employee

Hi @Anonymous,

 

You almost got there. Try the formula below, please.

Table =
DISTINCT (
    UNION (
        CALCULATETABLE (
            VALUES ( Employee[Code] ),
            FILTER (
                Employee,
                ISBLANK ( Employee[Code] ) = FALSE ()
                    && Employee[Crew] = "MGMT"
            )
        ),
        CALCULATETABLE (
            VALUES ( Asset[Code] ),
            FILTER ( Asset, ISBLANK ( Asset[Code] ) = FALSE () && Asset[Crew] = "Maint" )
        )
    )
)

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

Hi 

 

Hi @Anonymous,

 

It works in my test. Did you make any changes?

Adding_a_condition_in_distinct_union_function

 

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

Thank you so much for your time and help Smiley Very Happy

Anonymous
Not applicable

no one has any idea?

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.