How to visualize Python charts in Power BI Part 2
This article continues looking at python code in Power BI to produce charts.
2022-09-12
6,067 reads
This article continues looking at python code in Power BI to produce charts.
2022-09-12
6,067 reads
This article will show you how to use a Powerpoint theme to modify and beautify a Power BI report.
2022-08-22
5,212 reads
This article will show how you can code in Python and produce a chart for Power BI.
2022-08-15
14,370 reads
This article shows how you can incorporate Python scripting inside a Power BI report.
2022-08-01
12,489 reads
Learn how you can make your visuals more interesting with the Infographic Designer Visual.
2022-07-25
10,168 reads
Learn how to work with SSAS data in Power BI in this article.
2022-07-18
5,701 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,941 reads
2022-06-27
37,355 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,882 reads
Learn about expressions and date functions in the Power BI Report Builder.
2022-06-13
18,447 reads
By Steve Jones
I type fairly well. Well, I type fast, but I do wear out a...
By way of background, a while back I did video called “My New Favourite...
By ReviewMyDB
Index maintenance has always meant nightly jobs and a window you have to defend....
Comments posted to this topic are about the item SQL Art, Part 4: Happy...
Comments posted to this topic are about the item How We Handled a Vendor...
Comments posted to this topic are about the item Cognitive Coverage
I have this data in the dbo.Commission table in a SQL Server 2022 database.
salesperson commission Brian 12 Brian 16 Andy 7 Andy 14 Andy 21 Steve 20 Steve NULLAll the data is a varchar, and I decide to run this query to get the totals for each salesperson.
SELECT SalesPerson
, AVG(TRY_PARSE(Commission AS int)) AS TotalCommission
FROM commission
GROUP BY SalesPerson
GO
What average commission is calculated for Steve? See possible answers