Forum Discussion
Anonymous
5 years agoNot applicable
Apply a filter to data from Bigquery when navigating to the table
Hello, I've connected to Bigquery using PowerQuery. When I try and connect to a table it's asking me to apply a filter on the date. DataSource.Error: ODBC: ERROR [42000] [Microsoft][BigQ...
- 5 years ago
Right click Navigation in Applied Steps and choose "Insert Step after". Then add a custom step with a filter. E.g.
= Table.SelectRows(#"Previous Step", each [Merchant] = "testmerchant")Replae #"Previous Step" with the text that is generated by default when you do "Insert Step After" .
Anonymous
5 years agoNot applicable
Hi Anonymous
Make sure you have the formula bar turned on. In PowerQuery go to VIEW and enable the checkbox for FORMULA BAR. You now see an extra bar where you can add the code.
Does that do the trick?
Regards
Bas
Anonymous
5 years agoNot applicable
Thanks Bas, that did the trick! Now I can see the Formula input.