Forum Discussion
Power BI table data export in csv to email using Microsoft Flow
- 6 years ago
Hi Anonymous ,
here are a few screenshots from my test.
My source table:
My Power Query Code to send the data to Flow.
My transformed data in Flow.
Hope this helps.
Go to file option and select ignore privacy session and run it . i just tested it working fine
- shanmanz6 years agoNew Member
Hi ,
I tried above solution but stuck at Powerquery editor step converting to JSON.
- I created a Flow whose trigger is a āWhen a HTTP request is receivedā (no further inputs in that step) and add a āComposeā-action with the Body-element in it. Then save the Flow and copy the generated URL .
- Open Power BI Desktop , Connect to dataset created at https://app.powerbi.com/groups/me/list/datasets . However, after connection Tranform Query option is grayed out .
Also tried this : open Power BI Desktop, do not connect to any data source, Select Transform Query, Advanced Editor as shown . However there is no option to connect to dataset created at https://app.powerbi.com/groups/me/list/datasets .See Screenshot PBI2
What source do I need to enter in the below code in Powerquery editor to connect to dataset at apps.powerbi.com that will convert records to JSON format.
let
Source = #ā1_SourceTableā,
ToArray = Table.ToRecords(Source),
ToJsonBinary = Json.FromValue(ToArray),
WebCall = Web.Contents(
āURL from FLow ā,
[Content = ToJsonBinary]),
LinesFromBinary = Lines.FromBinary(WebCall)
in
Lines.FromBinaryThanks
- shanmanz6 years agoNew Member
Oh.. OK š . I am trying to convert Microsoft Teams call quality Dashboard Data to CSV format then email or store it to onedrive for internal audit purpose. My plan was to publish Microsoft Teams Call Quality Dashboard to Power BI service , Use Power Query editor to convert it to JSON , then Use flow to convery to CSV then Email.
Is there any connector in Power Query I can use to get data from POwerBI service or Microsoft Teams Dashboard directly ?
Any other thought??
Thanks again for the input.