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
jasonyeung87
Helper V
Helper V

Filtering data based on 2 columns in dataset

Hi,
 
I'm using the table visualization to display data from an analysis services database. The data looks similar to the following:

Customer NameUser Name
JasonJay
JohnJohn
JulianJul
Jack 
JimmyJimmy

 
I want a filter so that Power BI would only display records if Customer Name does not match the User Name or the User Name is not blank. The end result would be the following:

Customer NameUser Name
JasonJay
JulianJul

 
I was wondering if it's possible to do this via the filters? Or would I have to update the Analysis Services database? I want to avoid doing the latter as much as possible.
 
Sincerely,
 
Jason
 

6 REPLIES 6
v-kelly-msft
Community Support
Community Support

Hi  @jasonyeung87 ,

 

You can create a report level measure in live connection mode,such as :

measure=IF(MAX('table'[Customer Name])<>MAX('table'[User Name])&&MAX('table[User Name])<>BLANK(),MAX('table'[Customer Name]),BLANK())

Put measure with column [User Name],you will see your expected output.

Below is the reference:

https://radacad.com/live-connection-when-power-bi-comes-hybrid#:~:text=Modeling%20and%20Report%20Lev...

 

Best Regards,
Kelly
Did I answer your question? Mark my post as a solution!

Hi Kelly,

 

The New measure button is greyed out for me. Is there a way to activate this button?

 

Sincerely,

 

Jason

 

Anonymous
Not applicable

Have you considered using a DAX measure?

 

how is your data structured? is it in columns in a fact table? 

 

if so then you could add a column with an IF statement as an example 
             User Names Match = if(customer name = user name , "Match" , "Does not Match" )

then add the column to a filter for the matrix and select "Match" and that should do it

Hi Dnerada,

 

The data is from the Analysis Services database and is not structured with dim / fact tables. We're connecting to it live, so we can't modify the Cubes. I'll see if I could add a measure, but because it is a live connection, it may not be possible.

 

Sincerely,

 

Jason

 

 

Anonymous
Not applicable

You should have no issues creating a report level meaure with a live connection 

GilbertQ
Super User
Super User

Hi there

As far as i can tell you would have to do this in Analysis Services. I am not sure how you would create a filter without creating it in a table?




Did I answer your question? Mark my post as a solution!

Proud to be a Super User!







Power BI Blog

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
Top Kudoed Authors