Forum Discussion
PSupanich
3 years agoNew Member
Passind a Date Parameter for a Filter -Error
I have a Connection Only Parameter Called "Filter Date" that I am am referencing in another Query to Filter a By Date. This is the original code that was edited = Table.SelectRows(#"Renamed Col...
jbwtp
Memorable Member
3 years agoHi PSupanich,
the #date funciton that is used in the example does take 3 parameters: year, month and day. It fails because #"Filter date" only contains 1 element - the date itself. You do not really need #date here, rahter Date.From used like Date.From(#"Filter date").
Cheers,
John