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

Be one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now

Reply
aallman
Helper I
Helper I

Issue with Value() function converting string to number

I am using a switch formula to simplify and bucket a column of mixed numeric and text values. The goal is to simplify values that are numeric with text to just the number. (For example, I have these values in the column: "2", "2g", "2 g"  and I want all of them to be returned as "2".) There are some values in the column that do not have any numbers such as "dg" and "ph". I used the formula ISERROR(VALUE([mycolumn])) within my switch formula to return a value of "Other" for these values. 

 

The problem is with one single row that has the value "2a". This does NOT return as an error within the VALUE() function. It actually returns a value of 0.0833333 for a reason I can't figure out.  Is "a" some stored variable? What is going on and how can I fix it??

 

aallman_2-1659028308712.png

 

aallman_1-1659028294331.png

 

 

3 REPLIES 3
tamerj1
Super User
Super User

Hi @aallman 
It is not simple simple as you may think it is. However, might not be so coplex but relly depends on the shape of your data. Please provide a reasonable and relevent sample of data to work with. 
On the other hand a power bi column can only contain data of one data type. In case of error you can return blank not a string.

The issue is that it is not returning an error like it should. ISERROR(VALUE("2a")) should return TRUE but it returns FALSE. See the attached screenshots. 

here is a small sample of the values in the column I am working with: 

aallman_0-1659031025174.pngaallman_1-1659031043168.png

This column is a string column and the column I am creating is also a string column. I did some replace fucntions to remove blank spaces and "g" and "G" (because those are the most common units attached to the end of my numeric values). 

Hi @aallman 
Please follow these steps

1.png2.png3.png

Numbers = 
SELECTCOLUMNS (
    UNION (
        GENERATESERIES ( 0, 9, 1 ),
        { "." }
    ),
    "Digit",
    [Value]
)
Value = 
VAR String = 'Table'[MyColumn]
VAR Length = LEN ( String )
VAR T1 = GENERATESERIES ( 1, Length, 1 )
VAR T2 = ADDCOLUMNS ( T1, "@Letter", MID ( String, [Value], 1 ) )
VAR T3 = FILTER ( T2, [@Letter] IN VALUES ( Numbers[Digit] ) )
RETURN
    VALUE ( CONCATENATEX ( T3, [@Letter],, [Value], ASC ) )

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

ArunFabCon

Microsoft Fabric Community Conference 2025

Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.

December 2024

A Year in Review - December 2024

Find out what content was popular in the Fabric community during 2024.