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
NoneOR
Regular Visitor

UNION Related filter

Hello, 

 

I have a problem in applying filter from related table, from 1 side of relationship. 'prod'[serial] = "true"

 

Total Rules =
    UNION(
    SELECTCOLUMNS(
        'Cons',
        "ID", 'Cons'[Id],
        "Name", 'Cons'[Name],
        "Rules", "V_1",
        "WO", 'Cons'[Work],
        "Errors", 'Cons'[V_1]),
    SELECTCOLUMNS(
        'Cons',
        "ID", 'Cons'[Id],
        "Name", 'Cons'[Name],
        "Rules", "V_2",
        "WO", 'Cons'[Work],
        "Errors", 'Cons'[V_2]))
1 ACCEPTED SOLUTION
tamerj1
Super User
Super User

Hi @NoneOR 

please try

Total Rules =
VAR T =
FILTER ( 'Cons', RELATED ( 'prod'[serial] ) = "true" )
RETURN
UNION (
SELECTCOLUMNS (
T,
"ID", 'Cons'[Id],
"Name", 'Cons'[Name],
"Rules", "V_1",
"WO", 'Cons'[Work],
"Errors", 'Cons'[V_1]
),
SELECTCOLUMNS (
T,
"ID", 'Cons'[Id],
"Name", 'Cons'[Name],
"Rules", "V_2",
"WO", 'Cons'[Work],
"Errors", 'Cons'[V_2]
)
)

View solution in original post

2 REPLIES 2
tamerj1
Super User
Super User

Hi @NoneOR 

please try

Total Rules =
VAR T =
FILTER ( 'Cons', RELATED ( 'prod'[serial] ) = "true" )
RETURN
UNION (
SELECTCOLUMNS (
T,
"ID", 'Cons'[Id],
"Name", 'Cons'[Name],
"Rules", "V_1",
"WO", 'Cons'[Work],
"Errors", 'Cons'[V_1]
),
SELECTCOLUMNS (
T,
"ID", 'Cons'[Id],
"Name", 'Cons'[Name],
"Rules", "V_2",
"WO", 'Cons'[Work],
"Errors", 'Cons'[V_2]
)
)

So simple and i didnt think to put it as VAR.

 

TRUE()

dont need quotation marks but the mistake is on me as i wrote it with mistake at begenning.

 

Thank you!

 

Helpful resources

Announcements
July 2025 community update carousel

Fabric Community Update - July 2025

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

July PBI25 Carousel

Power BI Monthly Update - July 2025

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

Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.