hi,
i get my data for period beginning 01 January 2015 from google bigquery as follows:
Source = Value.NativeQuery(GoogleBigQuery.Database()
{[Name=“abc-stock”]}[Data],
“select * from abc-stock.uk.uk
where (ORIGIN=‘LAX’ or DEST=‘LAX’)”,
null,
[EnableFolding=true])
note:
i have filtered the output for ORIGIN or DEST to be ‘LAX’.
the data only date value is in the column DATE.
i’d like to create a parameter query that allows me to filter data for following condition examples:
-
year is > 2017
-
year is between 2015 and 2018
i’d appreciate any help to show me how to parameter query to filter for those condition.
tks & krgds, -nik
p.s.
separately, i have seen how power query in ms excel uses parameter table but i’m not sure if such method is available in ms power bi too.