Forum Discussion
Lovebo01
5 years agoHelper I
Refer another table in query editor
Hello, I have a table with some date : Table Orders Value Date Order 20 17-07-2017 12 23-08-2020 I want to filter the date dynamically with another table where I have only one...
CNENFRNL
5 years agoCommunity Champion
Hi, Lovebo01 , the syntax is like this
#"Filtered Rows" = Table.SelectRows(#"Renamed Columns", each [Date Order] <= StopDate[DateToStop]{0}))or equally
#"Filtered Rows" = Table.SelectRows(#"Renamed Columns", each [Date Order] <= StopDate{0}[DateToStop]))
Lovebo01
5 years agoHelper I
Thanks a lot, that's exactly what I expected !!