Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Data Days is here! Join us now for 60+ days of learning, challenges, and connection. Learn more

Reply
stfox
Helper I
Helper I

ISNUMBER & ISTEXT

Hi Folks

I need to search a column and determine if the contents contain just Text or  just Numbers . The dataset I am searching is largish (>5 M rows).  In Excel, the ISNUMBER  and ISTEXT functions work at the cell level and produce what I am after (see screenshot below). DAX calculations in PowerBI appear to work differently- they appear to be working on the datatype of the column (also in screenshot).   I can't see a simple/ elegant  PowerQuery solution.  I am pulling data from a SQL Server DB, so contemplating  pulling the data from a SQL View that contains Regex that does the search, or perhaps just taking the "WHERE  ...."LIKE" route with wildcards.

 

 In terms of processing power- I have a Virtcual Machine with PowerBI running with  RAM 8 (althjough I could dial this up to 16 GB), and the SQL DB has 64 GB.

 

Can anyone suggest the best approach/ pros vs cons, considering the dataset size?

Cheers

Steve 

 

  Here is a link to my PowerBI file

PowerBI vs EXCEL.PNG

1 ACCEPTED SOLUTION
Sean
Community Champion
Community Champion

@stfox Yes in Excel cells can have their own data types while in PBI it's the whole column!

 

However in both Excel and PBI you can tell the data type by just looking for this:

TEXT - left justified

NUMBER - right justified

Which you can obvioualy confirm by looking at your pictures! The only strange thing is cell A2 in Excel?

EDIT: I guess even specifically formatted as TEXT - the 55 (cell A2) is recognized in Excel as Number.

 

Anyway what you can do is test if the value can be converted to a number...

 

Can Convert = NOT ( ISERROR (Sheet1[Item to Test] + 0 ) )

 

Can Convert.png

 

Hope this helps!

View solution in original post

2 REPLIES 2
Sean
Community Champion
Community Champion

@stfox Yes in Excel cells can have their own data types while in PBI it's the whole column!

 

However in both Excel and PBI you can tell the data type by just looking for this:

TEXT - left justified

NUMBER - right justified

Which you can obvioualy confirm by looking at your pictures! The only strange thing is cell A2 in Excel?

EDIT: I guess even specifically formatted as TEXT - the 55 (cell A2) is recognized in Excel as Number.

 

Anyway what you can do is test if the value can be converted to a number...

 

Can Convert = NOT ( ISERROR (Sheet1[Item to Test] + 0 ) )

 

Can Convert.png

 

Hope this helps!

Thanks Sean 

So essentially we check if an error is thrown when an addition (+0) is attempted on the contents of the column. 


Cheers

Steve

Helpful resources

Announcements
Fabric Data Days is here Carousel

Fabric Data Days 2026

Don't miss out on Data Days, June 15 through August 7. Learn Fabric, Power BI, SQL, AI and more.

May Power BI Update Carousel

Power BI Monthly Update - May 2026

Check out the May 2026 Power BI update to learn about new features.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.