PowerQuery, Use partial keywords auto-match

nikio8

Board Regular
Joined
Oct 20, 2017
Messages
128
Hi all, thanks for your help in advance.
Essentially reconciling very similar description data every day.

Sometimes there are the same description which can give meaning to several columns (has tax, which company, which accounting expense code...) and very little needs to be done.

The problem is other data either has date or $ amounts, which vary. It would be great to partially search and auto-match. Perhaps unique keywords can be set up, and merge table can be used. It would be nice to set up database (table) that does say ,

AMEX $23.58 8989889 | "AMEX8989889" | => (store name, credit card, Amex, exp code)
CompanyNameX 22/7/2018 | "CompanyNameX" | ...
ContractorA | "ContractorA" | ...

The point of this would be to have table that is easy to edit. It is almost the same data every day, why use complex formulas and many "if else" ?

This is were I am thus far. If rows in Data1 have any of the conversion words, they are stored in output table.
I would like to returrn first word from Converion or null.

Data1OutputConversion
The red barnThe red barnRed
A yellow carBlue jeansBlue
Blue jeansGreen beansGreen
Green beansChicago blue
Atlanta
Chicago blue

<tbody>
</tbody>

Code:
let    Source = Excel.CurrentWorkbook(){[Name="DataTable"]}[Content],    
    LookUp = Excel.CurrentWorkbook(){[Name="ConversionTable"]}[Content],
    #"Value" = 
        //Table.SelectRows(table as table, condition as function) as table         
        Table.SelectRows(Source, (r)=>   List.AnyTrue(
                                                    List.Transform(
                                                        LookUp[Conversion],
                                                        each Text.Contains(r[Data1], _, Comparer.OrdinalIgnoreCase)
                                                        ))
                                                    
                        )
in
    #"Value"
 

Excel Facts

Links? Where??
If Excel says you have links but you can't find them, go to Formulas, Name Manager. Look for old links to dead workbooks & delete.
This is were I am thus far. If rows in Data1 have any of the conversion words, they are stored in output table.
I would like to returrn first word from Converion or null.

Instead of creating the "Output" table you want to add a column to the "Data1" table which shows, for each row, the first (partial) match found in the Conversion list ???
 
Upvote 0
Hi yes. The first row in conversion table is the keyword i would use to add more columns to description. Convert Description to book values.

The Red Car --- Red --- Red, MotorVehicle, Input tax credits, State, Registration, Accounting code...

Of course conversion table would not have ambiguous names.

Each string in Description, search all keywords in Conversion and return first non empty keyword or null.
 
Upvote 0
Does this do what you are after?

Code:
let    
    Source = Excel.CurrentWorkbook(){[Name="DataTable"]}[Content],

    LookUp = List.Buffer(Excel.CurrentWorkbook(){[Name="ConversionTable"]}[Content][Conversion]),

    fn = (Description as text, ListToSearch as list) =>
    Text.Combine(List.RemoveNulls(List.Transform(ListToSearch, each if 
                                                                      Text.Contains(Description, _, Comparer.FromCulture(Culture.Current, true)) 
                                                                    then 
                                                                        _ 
                                                                    else 
                                                                        null
                                                )
                                ),
                 ","),

    AddColumn = Table.AddColumn(Source,"Result", each fn([Data1], LookUp), type text)
in
    AddColumn
 
Last edited:
Upvote 0
Actually I could've used List.Select instead of List.Transform to make it more compact and avoid using List.RemoveNulls. You can try doing that since I see you have M knowledge
 
Last edited:
Upvote 0
Very nice :)
Thank you. Thank you VBA Geek.
I see that I have a lot to learn.

Very nice example how to convert table column to list and how to use .Transform, quite tricky function.
 
Upvote 0
Hi, not sure what is the problem, there is an error "Expression.Error: We cannot convert the value "Red" to type Logical."
I assumed that I can just replace List.RemoveNulls(List.Transform )) with List.Select as per your instruction.
I am not exaclty sure what Comparer.FromCulture(Culture.Current, true) does ?

Code:
let        LookUp = List.Buffer(Excel.CurrentWorkbook(){[Name="CTable"]}[Content][Original]),    
    Source = Excel.CurrentWorkbook(){[Name="DTable"]}[Content],    


        fn = (Description as text, ListToSearch as list) =>
            Text.Combine( 
                            List.Select(
                                            ListToSearch, 
                                            each if 
                Text.Contains(Description, _, Comparer.FromCulture(Culture.Current, true)) then _ else   null
                                                        
                                       ),
                       ","),


    AddColumn = Table.AddColumn(Source,"Result", each fn([Data1], LookUp), type text)
 in
    AddColumn
 
Upvote 0
If you use List.Select then you will not need to use an if statement:

Code:
each if 
                Text.Contains(Description, _, Comparer.FromCulture(Culture.Current, true)) then _ else   null

List.Select iterates through the List and keeps only those items that evaluate to TRUE, hence you can simply do:

Code:
each Text.Contains(Description, _, Comparer.FromCulture(Culture.Current, true))
 
Upvote 0
uh thanks, quite confusing.
looking at text.combine it would seam that rather than taking one description and searching all keywords, it does the opposite, as comma is outside of .select.

not easy at all :(
 
Upvote 0

Forum statistics

Threads
1,214,628
Messages
6,120,618
Members
448,973
Latest member
ChristineC

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top