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
blazko
Helper III
Helper III

common character position

Hi! I need help with finding the the common character (or characters) in column (by a category from another colummn).
ex '123G456', '789G321' have common G on third position. So im looking a column to make that would look like that maybe:   '...G...'. So the output would look like:

'J....G..'
...KJH...'

etc

DAX or M. Thx for any help! 

1 ACCEPTED SOLUTION

@blazko 

 

Try this.

Please see attached file's Query Editor as well for steps

 

 

let
    Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("dcpBCoNADIXhu8xaQhJnxmSttIuK4FLEhbjoBXoAT+PBPEknhYKKs3vv5xtHt8wfcoUL9VPRx8fw+p993QDcVJyJxKYLt4RTRSZEmkXTBrCdyBGo/ABxDoRo8a1yB8oUhepeGLE1YBsA2iNQi8RlFpBFlSoLKosx+AuYvg==", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type text) meta [Serialized.Text = true]) in type table [Column1 = _t, Column2 = _t, Column3 = _t]),
    #"Changed Type" = Table.TransformColumnTypes(Source,{{"Column1", type text}, {"Column2", type text}, {"Column3", type text}}),
    #"Grouped Rows" = Table.Group(#"Changed Type", {"Column1"}, {{"ALL", each _[Column2], type list}}),
    #"Added Custom2" = Table.AddColumn(#"Grouped Rows", "Custom.2", each Text.Combine(Table.AddColumn(Table.FromColumns(List.Transform([ALL],each Text.ToList(_))),"Result",each 
let mylist=List.Distinct(Record.ToList(_)),
mycount=List.Count(mylist)
in
if mycount=1 then Text.Combine(mylist) else "."
)[Result])),
    #"Expanded ALL" = Table.ExpandListColumn(#"Added Custom2", "ALL")
in
    #"Expanded ALL"

Regards
Zubair

Please try my custom visuals

View solution in original post

4 REPLIES 4
Zubair_Muhammad
Community Champion
Community Champion

@blazko 

 

Could you copy paste some sample data with expected results?


Regards
Zubair

Please try my custom visuals

ok

 

cat15CG9046FYK5CG90…..
cat15CG9086DN55CG90…..
cat2021001a89..1001…
cat2981001a12..1001…
cat2561001g98..1001…
cat381CQ8200L.1CQ8...L
cat391CQ8123L.1CQ8...L
cat311CQ8987L.1CQ8...L
cat371CQ8654L.1CQ8...L

@blazko 

 

Try this.

Please see attached file's Query Editor as well for steps

 

 

let
    Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("dcpBCoNADIXhu8xaQhJnxmSttIuK4FLEhbjoBXoAT+PBPEknhYKKs3vv5xtHt8wfcoUL9VPRx8fw+p993QDcVJyJxKYLt4RTRSZEmkXTBrCdyBGo/ABxDoRo8a1yB8oUhepeGLE1YBsA2iNQi8RlFpBFlSoLKosx+AuYvg==", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type text) meta [Serialized.Text = true]) in type table [Column1 = _t, Column2 = _t, Column3 = _t]),
    #"Changed Type" = Table.TransformColumnTypes(Source,{{"Column1", type text}, {"Column2", type text}, {"Column3", type text}}),
    #"Grouped Rows" = Table.Group(#"Changed Type", {"Column1"}, {{"ALL", each _[Column2], type list}}),
    #"Added Custom2" = Table.AddColumn(#"Grouped Rows", "Custom.2", each Text.Combine(Table.AddColumn(Table.FromColumns(List.Transform([ALL],each Text.ToList(_))),"Result",each 
let mylist=List.Distinct(Record.ToList(_)),
mycount=List.Count(mylist)
in
if mycount=1 then Text.Combine(mylist) else "."
)[Result])),
    #"Expanded ALL" = Table.ExpandListColumn(#"Added Custom2", "ALL")
in
    #"Expanded ALL"

Regards
Zubair

Please try my custom visuals

Just wow! I can't thank you enough! Works as a charm!

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.