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
kjartank
Helper II
Helper II

Using filter on UNION

Hi.

 

I have been using the "UNION" function to get my charts to be more manageable and am in need of a filter on these tables. The code I've been using looks like this.

Satisfaction Score = UNION (
SELECTCOLUMNS (Tabel1; "Attribute"; "01. Check-in"; "Answer"; Tabel1[Check-in] );
SELECTCOLUMNS (Tabel1; "Attribute"; "02. Room"; "Answer"; Tabel1[Room] );
SELECTCOLUMNS (Tabel1; "Attribute"; "03. Service"; "Answer"; Tabel1[Service] );
SELECTCOLUMNS (Tabel1; "Attribute"; "04. Entertainment"; "Answer"; Tabel1[Entertainment] );
SELECTCOLUMNS (Tabel1; "Attribute"; "05. Cleanliness"; "Answer"; Tabel1[Cleanliness] );
SELECTCOLUMNS (Tabel1; "Attribute"; "06. Childfriendly facilities"; "Answer"; Tabel1[Chilfriendly facilities] );
SELECTCOLUMNS (Tabel1; "Attribute"; "07. Prices"; "Answer"; Tabel1[Prices] );
SELECTCOLUMNS (Tabel1; "Attribute"; "08. Overall experience"; "Answer"; Tabel1[Overall Experience] )
 )

I need to filter ALL the variables on the highest value of a variable called "Period". How would I go about implementing that in the UNION function?

 

Thanks in advance.

1 ACCEPTED SOLUTION
Greg_Deckler
Super User
Super User

You would use FILTER in your first parameter. So,

 

SELECTCOLUMNS (FILTER(Table1,[Period] = MAX([Period])); "Attribute";...

Something along those lines. Would need sample data to get specfic.

 

You might also want to create a variable where you filter your table and return it and then use that variable in place of Table1 in your SELECTCOLUMNS. Would be more efficient that way.


@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...

View solution in original post

6 REPLIES 6
kjartank
Helper II
Helper II

Hi @v-huizhn-msft and @Greg_Deckler

 

An embarrasing fault from my side. The solution that @Greg_Deckler works just fine. I should have replaced the comma with a semicolon, which I didn't do at first. So please accept my apologies. Thanks a lot. It runs beautifully now!

@kjartank - Apologies for the comma versus semi-colon! Still haven't mastered those localization differences!


@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...
v-huizhn-msft
Employee
Employee

Hi @kjartank,

Please follow the @Greg_Deckler said, filter the table using the highest value of a variable called "Period". Then use the filter table in your formula, don't hesitate to ask if you have any other issue.

Best Regards,
Angelia

hi @v-huizhn-msft

 

I've tried the solution that @Greg_Deckler suggested and I got an error. I'm not sure why, but the error message reads "Cannot identify the table that contains [period] column."

Greg_Deckler
Super User
Super User

You would use FILTER in your first parameter. So,

 

SELECTCOLUMNS (FILTER(Table1,[Period] = MAX([Period])); "Attribute";...

Something along those lines. Would need sample data to get specfic.

 

You might also want to create a variable where you filter your table and return it and then use that variable in place of Table1 in your SELECTCOLUMNS. Would be more efficient that way.


@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...

Hi @Greg_Deckler,

 

How I can create such variable (filtered table based on slicer) and then use it selectcolumns?

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.

Top Solution Authors