Forum Discussion
Pull Data into Power BI
Manal
I am not sure about external data source but you can use powerbi URL to set filters. For example https://app.powerbi.com/groups/me/reports/99999999-3498-3a81-acdc-1386adfo8901b?filter=MyDataset/Gender eq 'F'
Where '99999999-3498-3a81-acdc-1386adfo8901b' is my report I'd, 'MyDataset' is my dataset, 'Gender' is filter and is equal to 'F'.
You can use power bi rest api calls to push data live from your application. Here is documentation on rest api.
Thakn you for your help.
Are you sure it's the dataset name that I have to pass not the table name (filter=...) ?
On more question, how do I encode the space between Gender_eq_'value' ?
https://app.powerbi.com/groups/me/reports/99999999-3498-3a81-acdc-1386adfo8901b?filter=MyDataset/Gender eq 'F'
Thank you again.