Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

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