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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
ritanoori
Resolver I
Resolver I

Custom column - if first 9 characters column is alphanumeric or numeric

Hello Everyone

I'm trying to create a custom column in power querey where if the first 9 characters of [description] is alphanumeric then "Y" else  if the first 9 characters of [description] is numeric then "X" else "N/A"

 

can you please help. Thanks. 

1 ACCEPTED SOLUTION

@ritanoori , Try something like

if Value.Is(Text.Start([description],9) Int64.Type) then "Y" else if Value.Is(Text.Start([description],9) Text) then "X" else "N/A"

View solution in original post

4 REPLIES 4
v-yingjl
Community Support
Community Support

Hi @ritanoori ,

You can create this custom column in power query:

    Table.AddColumn(
        #"Changed Type", 
        "Custom", 
        each if 
            Value.Is(
                 Value.FromText(Text.Start([description],9)),Int64.Type
            ) 
        then "X"
        else if 
        Text.Length(
            Text.Remove(
                Text.Start([description],9),
                {"a".."z","A".."Z"})
            ) = 0
        then "Y"
        else "N/A"
    )

re.png

Attached a sample file in the below, hopes to help you.

 

Best Regards,
Yingjie Li

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

amitchandak
Super User
Super User

@ritanoori , Try a new column like

 

new column =
var _chk = left([description],9)
return
Switch(True(),
ISNUMBER(_chk), "Y"
ISTEXT(_chk) ,"X"
,"N/A")

Thanks. But I need this in power querey. 

@ritanoori , Try something like

if Value.Is(Text.Start([description],9) Int64.Type) then "Y" else if Value.Is(Text.Start([description],9) Text) then "X" else "N/A"

Helpful resources

Announcements
LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.

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.