How to use Images in Power BI Report Builder
Learn how you can add images to your reports in Power BI when using the Report Builder.
2022-05-23
6,058 reads
Learn how you can add images to your reports in Power BI when using the Report Builder.
2022-05-23
6,058 reads
2022-05-16
10,513 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,067 reads
This article shows how we can create tables in Power BI using code and DAX functions.
2022-05-02
42,446 reads
2022-04-22
10,521 reads
2022-04-11
17,476 reads
2022-04-06
48,989 reads
Introduction In this article, we will learn how to create charts from web pages with Power BI. Power BI is an extremely great tool to easily generate reports. We will combine and analyze data from different websites, and we will talk about COVID 19 with the reports. In order to analyze the information, we will […]
2022-03-21
10,771 reads
Introduction to Query history and server reports i...
2022-03-14
9,825 reads
Learn how to use Azure Data Studio to access a Central Management Server.
2022-03-07
2,662 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