Forum Discussion

MatiasSousa's avatar
MatiasSousa
Regular Visitor
6 years ago
Solved

Fetch text in cell and return corresponding value

Hello, I need help. I currently use this formula in excel: = LOOKUP(3 ^ 15; FIND (Validation! $ E $ 11: $ E $ 35; [@ Standards]; 1); Validation! $ D $ 11: $ D $ 35) However, I need to recreate it i...
  • danielkrol's avatar
    danielkrol
    6 years ago

    Oke. I think you might want to try to add a column to your table in Query Editor. You can type it in the Advanced Editor, or you can use the "Add column > extract > text between delimiters".

    In the advanced editor it will look like this:

        #"Inserted Text Between Delimiters" = Table.AddColumn(#"Changed Type", "Text Between Delimiters", each Text.BetweenDelimiters([Column1], "INMETRO Ordinance No.", ","), type text),
        #"Changed Type1" = Table.TransformColumnTypes(#"Inserted Text Between Delimiters",{{"Text Between Delimiters", Int64.Type}})

    In UI something like this:

     

    Hope this will help you!