Forum Discussion

Luis_Gomez's avatar
Luis_Gomez
Frequent Visitor
2 years ago
Solved

Create a list from another table to feed a custom function

Hi all,   I have a custom fuction that counts the times words on a list are found in a string:     let CountKeywords = (title as text, keywords as list) as number => let ...
  • Vijay_A_Verma's avatar
    Vijay_A_Verma
    2 years ago

    Keywords= Table.Column([Table],"Product")

    [Table] - This refers to a cell

    Table - This refers to entire table

    Use like this

    Table[Product]

    OR

    Table.Column(Table, "Product") ### This was my mistake to put Table as [Table]