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
asalazarjr
Frequent Visitor

How to extract string from name and create name group

Hey All,
Need help creating dax formula or calculated column to extract product density. Any help is greatly appreciated!

Need to go from left product column to right density group:

ProductDensity
A123 B1234 8Gbit 8 77/999 AE 1 AB8Gbit
A123 B12 4Gbit 16 7/999 ABCDE 1 AB4Gbit
A123 B1 2Gbit 16 77/999 AB 1 AB2Gbit
A123 B12346 512Gbit 8 77/99 ABCDE 512Gbit
A123 B123 77/999 ABCDE 1TB1TB


Thanks in advance!

1 ACCEPTED SOLUTION
VahidDM
Super User
Super User

Hi @asalazarjr 

 

Try this code to add a new calculated column:

Column = 
VAR _G =
    FIND ( "Gbit", [Product],, -1 )
VAR _T =
    FIND ( "TB", [Product],, -2 )
RETURN
    IF (
        _G <> -1,
        RIGHT ( LEFT ( 'Table'[Product], _G + 4 ), 6 ),
        IF ( _T <> -2, RIGHT ( LEFT ( 'Table'[Product], _T + 1 ), 3 ), "" )
    )

VahidDM_0-1675216912676.png

 

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

Appreciate your Kudos!! 

Badges.jpg

LinkedIn | Twitter | Blog | YouTube 

View solution in original post

2 REPLIES 2
VahidDM
Super User
Super User

Hi @asalazarjr 

 

Try this code to add a new calculated column:

Column = 
VAR _G =
    FIND ( "Gbit", [Product],, -1 )
VAR _T =
    FIND ( "TB", [Product],, -2 )
RETURN
    IF (
        _G <> -1,
        RIGHT ( LEFT ( 'Table'[Product], _G + 4 ), 6 ),
        IF ( _T <> -2, RIGHT ( LEFT ( 'Table'[Product], _T + 1 ), 3 ), "" )
    )

VahidDM_0-1675216912676.png

 

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

Appreciate your Kudos!! 

Badges.jpg

LinkedIn | Twitter | Blog | YouTube 

ppm1
Solution Sage
Solution Sage

You can add a custom column with this expression in the query editor. Note that M is case sensitive, so you can add in Text.Upper or Text.Lower to avoid that issue if needed.

 

= List.Select(Text.Split([Product], " "), each Text.Contains(_, "Gb") or Text.Contains(_, "TB")){0}

 

ppm1_0-1675216762266.png

 

Pat

 

Microsoft Employee

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.