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
NISH72
Helper IV
Helper IV

I want to remove users which start with "d" and not "D" in power bi desktop

The report level filter is not case sensitive and i want to create a report level filter which removes users starting with "d" and not "D". How to do it Please reply ASAP. Thanks

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @NISH72 

You can use unicode and IF.

Then filter according to the new column values.

For example:

Column = If(UNICODE(LEFT(Table[Column],1))=100,1,0)
If the first letter equals to 100 which is 'd' then value is 1.
Then filter all 1.
 
Cheers!
A

View solution in original post

4 REPLIES 4
Anonymous
Not applicable

Hi @NISH72 

You can use unicode and IF.

Then filter according to the new column values.

For example:

Column = If(UNICODE(LEFT(Table[Column],1))=100,1,0)
If the first letter equals to 100 which is 'd' then value is 1.
Then filter all 1.
 
Cheers!
A

And I want to add it as a report level filter
Anonymous
Not applicable

Hey @NISH72 

Each character in the world has a unique code. So 'D' is different than 'd'.

You may use the filter wherever you want. Visual, Report, Page.

 

Thanks

A

Is it case sensitive

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.