Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by watching the DP-600 session on-demand now through April 28th.
Learn moreJoin the FabCon + SQLCon recap series. Up next: Power BI, Real-Time Intelligence, IQ and AI, and Data Factory take center stage. All sessions are available on-demand after the live show. Register now
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.
No idea what to do. your help would be highly appreciated.
Solved! Go to Solution.
Hi @Anonymous,
It works in my test. Did you make any changes?
Best Regards,
Dale
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
Hi v-jiascu-msft,
Thanks for your time.
I tried your formula, but I got an error message that "Too few arguments were passed to the Union Function.The minimum argument count for the function is 2"
Any idea?
Thank you so much for your time and help ![]()
no one has any idea?
Check out the April 2026 Power BI update to learn about new features.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
| User | Count |
|---|---|
| 43 | |
| 35 | |
| 35 | |
| 21 | |
| 15 |
| User | Count |
|---|---|
| 63 | |
| 58 | |
| 28 | |
| 27 | |
| 25 |