Forum Discussion

MikBas's avatar
MikBas
Copper Contributor
Apr 25, 2023
Solved

extract information

Hello   Please could you help me extracting information from a column.   Normally I would use filter but Im trying to make an automated spreasheet (so that I only paste the data to column A and t...
  • Lorenzo's avatar
    Lorenzo
    Apr 25, 2023

    MikBas 

    In essence I need a list of all 'Order placed on PO...' in column C - but it will never be the same amount/value. One day there might be 3 lines, another 30 lines with all different PO numbers at the end. But the beginning phrase will always be 'Order placed on PO'.

     

    OK, so the following should do it:

    =LET(
      noBlank, FILTER(A:A, A:A<>""),
      FILTER(noBlank, LEFT(noBlank,15)="order placed on")
    )

Resources