Forum Discussion

MR654's avatar
MR654
New Member
3 years ago
Solved

Trying to select rows before expanding data from multiple tables

Here is what I have so far:     I am trying to select the rows in each table in the Data column where the Amount column in the inner table is over the cutoff amount. However, I am not sure i...
  • slorin's avatar
    3 years ago

    Hi

    with Table.ReplaceValue

    = Table.ReplaceValue(#"PreviousStepName",each [CutOff],"",(x,y,z)=>Table.SelectRows(x,each [Amount] > y),{"Data"})

     Stéphane