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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more

Reply
Syndicate_Admin
Administrator
Administrator

Differentiated filter in several tables

Hello, please your help to the following query:

I am consolidating in a new table the unique values of different tables and I need to place a filter to one of these tables to extract the data that matches the text "RESERVE"

Attached code and image of my DAX query.

CONSOLIDATES * to 1 =
FILTER(DISTINCT(UNION(
VALUES('Purchases V2'[NEED*]),
VALUES('SQVI_LIB01'[ID_UNICO]), *** HERE I NEED TO APPLY A FILTER TO EXTRACT THE ID_UNICOS THAT HAVE THE TEXT "RESERVATION" FROM ANOTHER COLUMN *** "
VALUES(SE16N[NEED*]))),
[NEED*]<>BLANK())

JMOLLAN_1-1671816932149.png

1 ACCEPTED SOLUTION
AlB
Community Champion
Community Champion

You have not specified the name of the "other column" that will be used for the filtering

 

CONSOLIDATES * to 1 =
FILTER (
    DISTINCT (
        UNION (
            VALUES ( 'Purchases V2'[NEED*] ),
            CALCULATETABLE (
                VALUES ( 'SQVI_LIB01'[ID_UNICO] ),
                'SQVI_LIB01'[The_OTHER_COLUMN] = "RESERVATION"
            ),
            VALUES ( SE16N[NEED*] )
        )
    ),
    [NEED*] <> BLANK ()
)

 

SU18_powerbi_badge

Please accept the solution when done and consider giving a thumbs up if posts are helpful. 

Contact me privately for support with any larger-scale BI needs, tutoring, etc.

 

 

View solution in original post

3 REPLIES 3
Syndicate_Admin
Administrator
Administrator

Thank you very much, the issue is solved.

Then please mark the answer as the solution and give kudos if suitable

 

SU18_powerbi_badge

Please accept the solution when done and consider giving a thumbs up if posts are helpful. 

Contact me privately for support with any larger-scale BI needs, tutoring, etc.

 

AlB
Community Champion
Community Champion

You have not specified the name of the "other column" that will be used for the filtering

 

CONSOLIDATES * to 1 =
FILTER (
    DISTINCT (
        UNION (
            VALUES ( 'Purchases V2'[NEED*] ),
            CALCULATETABLE (
                VALUES ( 'SQVI_LIB01'[ID_UNICO] ),
                'SQVI_LIB01'[The_OTHER_COLUMN] = "RESERVATION"
            ),
            VALUES ( SE16N[NEED*] )
        )
    ),
    [NEED*] <> BLANK ()
)

 

SU18_powerbi_badge

Please accept the solution when done and consider giving a thumbs up if posts are helpful. 

Contact me privately for support with any larger-scale BI needs, tutoring, etc.

 

 

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

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

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors