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
newgirl
Helper V
Helper V

M language Maximum Value

Hi!

 

I have a "Text after delimeter" column that shows 3 values - 20, 21, and B. I want to add another column in the Query Editor that if the value is B, it should instead show whatever is the maximum value from the "Text after delimeter" column.

 

Would appreciate the help!

 

opexx.JPG

1 ACCEPTED SOLUTION
FrankAT
Community Champion
Community Champion

Hi @newgirl ,

you can do it like this:

 

06-05-_2021_16-12-06.png

 

// Table
let
    Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("i45WMjJQitUBUoZgygnCQWIbWirFxgIA", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type nullable text) meta [Serialized.Text = true]) in type table [#"Text After Delimiter" = _t]),
    #"Added Custom" = Table.AddColumn(Source, "Only numbers", each try Number.From([Text After Delimiter]) otherwise null),
    #"Added Custom1" = Table.AddColumn(#"Added Custom", "Insert Max", each if [Only numbers] <> null then [Only numbers] else List.Max(#"Added Custom"[Only numbers])),
    #"Changed Type" = Table.TransformColumnTypes(#"Added Custom1",{{"Only numbers", type number}, {"Insert Max", type number}})
in
    #"Changed Type"

 

With kind regards from the town where the legend of the 'Pied Piper of Hamelin' is at home
FrankAT (Proud to be a Datanaut)

View solution in original post

2 REPLIES 2
FrankAT
Community Champion
Community Champion

Hi @newgirl ,

you can do it like this:

 

06-05-_2021_16-12-06.png

 

// Table
let
    Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("i45WMjJQitUBUoZgygnCQWIbWirFxgIA", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type nullable text) meta [Serialized.Text = true]) in type table [#"Text After Delimiter" = _t]),
    #"Added Custom" = Table.AddColumn(Source, "Only numbers", each try Number.From([Text After Delimiter]) otherwise null),
    #"Added Custom1" = Table.AddColumn(#"Added Custom", "Insert Max", each if [Only numbers] <> null then [Only numbers] else List.Max(#"Added Custom"[Only numbers])),
    #"Changed Type" = Table.TransformColumnTypes(#"Added Custom1",{{"Only numbers", type number}, {"Insert Max", type number}})
in
    #"Changed Type"

 

With kind regards from the town where the legend of the 'Pied Piper of Hamelin' is at home
FrankAT (Proud to be a Datanaut)

Thank you so much! This worked!

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.

Top Solution Authors