Тёмный
Power BI Life
Power BI Life
Power BI Life
Подписаться
Комментарии
@czowiekktoryzaduzowidzia5612
@czowiekktoryzaduzowidzia5612 24 дня назад
How to use python scripts on power bi service?
@powerbilife1957
@powerbilife1957 7 дней назад
If you want to use Python scripts with published reports, then you'd either need to... 1. Update data locally, and republish to update the report in Power BI service 2. Install a Data Gateway and configure the published report to update via the data gateway (which will connect to a machine with Python installed, and run the script). It seems you'd need to use a personal data gateway... powerbi.microsoft.com/en-us/gateway/ learn.microsoft.com/en-us/power-bi/connect-data/service-gateway-personal-mode
@kvelez
@kvelez 29 дней назад
import pandas as pd df = pd.DataFrame({ "Fname":['Harry', 'John', 'Sarah', 'George'], "Age": [20, 21, 19, 18], "Weight": [60, 70, 80, 90], "Gender": ['Male', 'Male', 'Female', 'Male'], "State": ['California', 'Texas', 'Florida', 'Georgia'], "Children": [2, 1, 0, 3], "Pets": [1, 0, 3, 2] }) print(df)
@julienbaneux9723
@julienbaneux9723 29 дней назад
Are you consulting for specific Power Bi issues?
@powerbilife1957
@powerbilife1957 7 дней назад
Right now I'm just sharing what I learn and hopefully what might be useful to others. Happy to take suggestions for future content :)
@BrianKasenLFP
@BrianKasenLFP Месяц назад
TURN UP YOU MIKE, PLEEAASE!
@hk_200k
@hk_200k Месяц назад
no sound on right, just left
@Everyonelovesyou
@Everyonelovesyou Месяц назад
Thanks it was useful...However increase audio please
@galukashadrack1304
@galukashadrack1304 2 месяца назад
Hi u are not audible
@iljak2914
@iljak2914 2 месяца назад
I cant here you, I don't have sound...
@christophmeirich5928
@christophmeirich5928 3 месяца назад
What about list values like speaker id? Could you handle this by power bi? Thx in advance Christoph
@powerbilife1957
@powerbilife1957 2 месяца назад
Hi there, I'm guessing you're talking about SpeakerID showing as [List] when importing. When you have these type of situations you have a few options. This hopefully gives some ideas (it's originally for Excel, but should be applicable to Power BI too)... support.microsoft.com/en-au/office/work-with-a-list-record-or-table-structured-column-power-query-d5e552be-c143-4f06-9a5e-0960bbaaf480
@BazziGB
@BazziGB 11 месяцев назад
Really useful series TY. My only comment would be about audio quality! It's difficult, even as a native EN speaker, to hear/understand what is being said during the video. I have to turn the volume up to max. Rgds/pgr
@powerbilife1957
@powerbilife1957 2 месяца назад
Apologies - I realised the audio output was really low. Unfortunately I'd need to replace the video to fix it, but have definitely taken note, as I was using new software, and didn't spot the level issue before uploading.
@manalizem
@manalizem Год назад
What’s the difference between 1.0 and 2.0 ? Thank in advance
@powerbilife1957
@powerbilife1957 2 месяца назад
I believe it was simply an API update from a Microsoft point of view, where they added the intelligence to recognise data types.
@mfmonthefmf
@mfmonthefmf Год назад
Thanks man, this helped!
@vinayv1123
@vinayv1123 Год назад
This is helpful
@NP-zr3jz
@NP-zr3jz Год назад
Thanks for this video but if you look your “Id” field which supposed to be employee name. How you can import employees name instead of ID?
@MattSimnerAU
@MattSimnerAU Год назад
Hi there, I'm guessing you're looking at importing the Speaker name (or other associated 'people' fields, like Created By, Modified By etc - to each row)? The ID field In this case, I think would be the unique ID of the Session. To get the speaker name you'd need to transform the data on import (using Power Query), and 'expand' the Table in the Speaker field, to get the 'value' of the person. SharePoint stores 'people' with their various fields like email, title etc. Hope I've understood correctly...