Power BI Custom Visuals Class (Module 15 – Table Heatmap)
In this module you will learn how to use the Table Heatmap Power BI Custom Visual. The Table Heatmap has...
2016-09-13 (first published: 2016-09-06)
1,983 reads
In this module you will learn how to use the Table Heatmap Power BI Custom Visual. The Table Heatmap has...
2016-09-13 (first published: 2016-09-06)
1,983 reads
Welcome back to another episode of This Week In Data! In our first episode,Adam and Devin debated the value of...
2016-08-31
767 reads
In this module you will learn how to use the Tornado Power BI Custom Visual. The Tornado allows you to...
2016-08-29
1,069 reads
We know you you’ve been dying to know, what is TWID? Drumroll please…. We’re excited to announce the launch of...
2016-08-24
479 reads
In this module you will learn how to use the Aster Plot Power BI Custom Visual. The Aster Plot is...
2016-08-22
1,080 reads
In this module you will learn how to use the Bullet Chart Power BI Custom Visual. The Bullet Chart serves...
2016-08-30 (first published: 2016-08-19)
2,734 reads
In this module you will learn how to use the Calendar Visualization Power BI Custom Visual. The Calendar Visualization is...
2016-08-16 (first published: 2016-08-10)
2,573 reads
In this module you will learn how to use the Card with States Power BI Custom Visual. The Card with...
2016-08-01
1,208 reads
In this module you will learn how to use the Chord Power BI Custom Visual. Chord diagrams show directed relationships...
2016-08-02 (first published: 2016-07-25)
2,288 reads
Today marks one years since Power BI was officially released. It’s been an amazing ride and I’d like to thank...
2016-07-24
491 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