cancel
Showing results for 
Search instead for 
Did you mean: 

Fabric is Generally Available. Browse Fabric Presentations. Work towards your Fabric certification with the Cloud Skills Challenge.

Reply
Anonymous
Not applicable

Find text and int values in a column

I have the follwoing column containing Yes, No, Maybe and numbers from 0 to 100:

 

Column1

Yes

No

3

Maybe

4

Yes

100

 

I am insterested in filtering the Yes, No and the numbers.

 

I tried to create a variable for numbers between 0 and 100 but that seems to be tricky. I can also write down number from 0 to 100 in the filter but there must be an easier way.

 

 

1 ACCEPTED SOLUTION
ddpl
Solution Sage
Solution Sage

==Creat calculated column through which you can filter.
Filter Column= SWITCH(
TRUE(),
'Table'[Column1] = "No","No",
'Table'[Column1] = "Yes","Yes",
'Table'[Column1] = "May be","May be",
"Number")
 
Accept as solution if its worked

View solution in original post

3 REPLIES 3
v-jingzhang
Community Support
Community Support

Hi @Anonymous 

 

Where do you want to filter the column? If you want to filter it in a visual or in DAX expressions, you can try @ddpl 's solution to create a calculated column. Use that calculated column to filter the object you want to filter.

 

If that's not what you want, can you describe the expected result with some sample data to help us understand it better?

 

Best Regards,
Community Support Team _ Jing

ddpl
Solution Sage
Solution Sage

==Creat calculated column through which you can filter.
Filter Column= SWITCH(
TRUE(),
'Table'[Column1] = "No","No",
'Table'[Column1] = "Yes","Yes",
'Table'[Column1] = "May be","May be",
"Number")
 
Accept as solution if its worked
amitchandak
Super User
Super User

@Anonymous , Try split by digit and nondigit, if that can help

Split Column By Digit to Non Digit & Non Digit to Digit: https://youtu.be/tY4Yk1crS9s

 

https://goodly.co.in/separate-numbers-from-text-excel-powerquery/

Helpful resources

Announcements
PBI November 2023 Update Carousel

Power BI Monthly Update - November 2023

Check out the November 2023 Power BI update to learn about new features.

Community News

Fabric Community News unified experience

Read the latest Fabric Community announcements, including updates on Power BI, Synapse, Data Factory and Data Activator.

Power BI Fabric Summit Carousel

The largest Power BI and Fabric virtual conference

130+ sessions, 130+ speakers, Product managers, MVPs, and experts. All about Power BI and Fabric. Attend online or watch the recordings.

Top Solution Authors
Top Kudoed Authors