Power BI Custom Visuals Class (Module 39 – Waffle Chart)
In this module you will learn how to use the Waffle Chart Power BI Custom Visual. The Waffle Chart visual...
2017-02-21
1,008 reads
In this module you will learn how to use the Waffle Chart Power BI Custom Visual. The Waffle Chart visual...
2017-02-21
1,008 reads
In this module you will learn how to use the Mekko Chart Power BI Custom Visual. The Mekko Chart visual...
2017-02-14
875 reads
In this module you will learn how to use the Gap Analysis Power BI Custom Visual. The Gap Analysis visual...
2017-02-15 (first published: 2017-02-08)
2,412 reads
In this module you will learn how to use the Box and Whiskers (Brad) Power BI Custom Visual. This is...
2017-02-07 (first published: 2017-02-03)
1,491 reads
In this module you will learn how to use the Box and Whiskers (Jan Pieter) Power BI Custom Visual. This...
2017-01-31 (first published: 2017-01-24)
1,739 reads
Newly added to the Power BI Service is a much awaited feature called Power BI Subscriptions. If you’ve worked in...
2017-01-23 (first published: 2017-01-17)
2,276 reads
In this module you will learn how to use the Sankey with Labels Power BI Custom Visual. The Sankey with...
2017-01-24 (first published: 2017-01-17)
1,868 reads
In this module you will learn how to use the Sankey Bar Chart Power BI Custom Visual. The Sankey Bar...
2017-01-10
750 reads
In this module you will learn how to use the Horizontal Funnel Power BI Custom Visual. The Horizontal Funnel functions...
2017-01-10 (first published: 2016-12-29)
2,162 reads
In this module you will learn how to use the Percentile Chart Power BI Custom Visual. The Percentile Chart is...
2017-01-05 (first published: 2016-12-29)
2,067 reads
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...
By gbargsley
Have you ever received the dreaded error from SQL Server that the TempDB log...
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