How to Get Data Using Python in Power BI
This article shows how you can incorporate Python scripting inside a Power BI report.
2022-08-01
12,457 reads
This article shows how you can incorporate Python scripting inside a Power BI report.
2022-08-01
12,457 reads
Learn how you can make your visuals more interesting with the Infographic Designer Visual.
2022-07-25
10,087 reads
Learn how to work with SSAS data in Power BI in this article.
2022-07-18
5,588 reads
Learn how you can adjust the way users interact with reports and change font sizes as well as add parameters for filtering.
2022-07-11
15,560 reads
2022-06-27
36,250 reads
This article continues looking at various expressions that are available in the Report Builder. We cover some build in functions as well as various logical operators.
2022-06-20
4,707 reads
Learn about expressions and date functions in the Power BI Report Builder.
2022-06-13
18,190 reads
Learn how you can add images to your reports in Power BI when using the Report Builder.
2022-05-23
5,988 reads
2022-05-16
10,405 reads
Who is the best Batman? – A Power BI Analysis of data Introduction Who is the best Batman? We were drinking some cold beers with some friends when someone said that Pattinson was the best Batman. People started to discuss and after 2 hours, the police had to stop the fight. The discussion inspires me […]
2022-05-09
3,060 reads
By Steve Jones
I’m not sure I knew identity column values could not be updated. I ran...
By Steve Jones
We had an interesting discussion about deployments in databases and how you go forward...
By ChrisJenkins
You could be tolerating limited reporting because there isn’t an off the shelf solution...
I have mentioned this several times over several years. Can someone please help me...
SELECT COUNT(DISTINCT Component) AS Found FROM tblComponents WHERE(Component NOT LIKE '%[a-z]%') AND(LTRIM(RTRIM(Component)) = 'GM13622')...
Comments posted to this topic are about the item Remotely Engineer Fabric Lakehouse objects:...
In a SQL Server 2025 table, called Beer, I have this data:
BeerIDBeerName 1Becks 2Fat Tire 3Mac n Jacks 4Alaskan Amber 8KirinI run this code:
SELECT JSON_OBJECTAGG(
BeerID: BeerName )
FROM beer;
What are the results? See possible answers