Power BI Custom Visuals Class (Module 08 – Dot Plot)
In this module you will learn how to use the Dot Plot Power BI Custom Visual. The Dot Plot is...
2016-07-20 (first published: 2016-07-18)
2,360 reads
In this module you will learn how to use the Dot Plot Power BI Custom Visual. The Dot Plot is...
2016-07-20 (first published: 2016-07-18)
2,360 reads
In this module you will learn how to use the Enhanced Scatter Power BI Custom Visual. This new-and-improved scatter chart...
2016-07-12
1,136 reads
In this module you will learn how to use the Histogram, a Power BI Custom Visual. A Histogram is a...
2016-07-05
1,613 reads
A really great feature that was silently added into June update of the Power BI Desktop is a feature called...
2016-07-03
1,085 reads
In the June update of the Power BI Desktop there were some really cool features that were added. I’d encourage...
2016-07-01
1,208 reads
In this module you will learn how to use the KPI Indicator (This is kind of like saying “ATM Machine”...
2016-07-05 (first published: 2016-06-28)
2,665 reads
In this module you will learn how to use the Radar Chart, a Power BI Custom Visual. The Radar Chart...
2016-06-28 (first published: 2016-06-21)
2,601 reads
In this module you will learn how to use the Hexbin Scatterplot Power BI Custom Visual. The Hexbin Scatterplot is...
2016-06-23 (first published: 2016-06-14)
2,900 reads
In this module you will learn how to use the Enlighten Aquarium Power BI Custom Visual. While it might not...
2016-06-07
1,837 reads
Welcome to an exciting new FREE class that I am launching today! Over the next year (that’s right year!) I...
2016-06-01
2,243 reads
Do you know if your SQL Server is really running at its best? To...
You can find the slides of my session on the €100 DWH in Azure...
By Steve Jones
This value is something that I still hear today: our best work is done...
Hi everyone I am writing an SP where there is logic inside the SP...
Comments posted to this topic are about the item Planning for tomorrow, today -...
We have a BI-application that connects to input tables on a SQL Server 2022...
I try to run this code on SQL Server 2022. All the objects exist in the database.
CREATE OR ALTER VIEW OrderShipping AS SELECT cl.CityNameID, cl.CityName, o.OrderID, o.Customer, o.OrderDate, o.CustomerID, o.cityId FROM dbo.CityList AS cl INNER JOIN dbo.[Order] AS o ON o.cityId = cl.CityNameID GO CREATE OR ALTER FUNCTION GetShipCityForOrder ( @OrderID INT ) RETURNS VARCHAR(50) WITH SCHEMABINDING AS BEGIN DECLARE @city VARCHAR(50); SELECT @city = os.CityName FROM dbo.OrderShipping AS os WHERE os.OrderID = @OrderID; RETURN @city; END; goWhat is the result? See possible answers