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
brabby_dabby
Frequent Visitor

Mask Data Based on Dynamic Slicer Selection

Hello,

 

I have some data in a 'raw_data' table that has Customer information:

NameMonthIncidence
Bill1.98
Bill2.96
Bob1.88
Bob2.81
Brian1.91
Brian2.82

 

And I have another table that creates an Alias:

NameAlias
BillCustomer 1
BobCustomer 2
BrianCustomer 3

 

My goal is to build a dashboard that has a slicer in which I am able to select a name. So, if I select 'Bob' in the slicer, then the dashboard will mask all other names to the 'Alias'[Alias] value so Bill will show up as 'Customer 2' and Brian as 'Customer 3'.

 

I've seen articles that show me how to anonymize data. But I only want to partially anonymize because I want to see the name I select, but the alias for the other names. And I don't think I want row level security because I want to see all the data, but just mask it based on which slicer I select.

 

Any help would be greatly appreciated.

1 ACCEPTED SOLUTION
Icey
Community Support
Community Support

Hi @brabby_dabby ,

 

Please check if this is what you want:

 

1. Add an Index column into "Customer" table to show all rows in the table visual.

 

2. Don't create active relationships between "Cusomer" and "Alias" table.

 

3. Create a measure.

Measure =
IF (
    MAX ( Customer[Name] ) = SELECTEDVALUE ( Alias[Name] ),
    SELECTEDVALUE ( Alias[Name] ),
    LOOKUPVALUE ( Alias[Alias], Alias[Name], MAX ( Customer[Name] ) )
)

 

4. Result:

alias.gif

 

 

 

Best Regards,

Icey

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

1 REPLY 1
Icey
Community Support
Community Support

Hi @brabby_dabby ,

 

Please check if this is what you want:

 

1. Add an Index column into "Customer" table to show all rows in the table visual.

 

2. Don't create active relationships between "Cusomer" and "Alias" table.

 

3. Create a measure.

Measure =
IF (
    MAX ( Customer[Name] ) = SELECTEDVALUE ( Alias[Name] ),
    SELECTEDVALUE ( Alias[Name] ),
    LOOKUPVALUE ( Alias[Alias], Alias[Name], MAX ( Customer[Name] ) )
)

 

4. Result:

alias.gif

 

 

 

Best Regards,

Icey

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

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.