Power BI Custom Visuals Class (Module 77 – Card Browser)
In this module you will learn how to use the Card Browser Custom Visual. The Card Browser allows you to...
2017-11-13
1,031 reads
In this module you will learn how to use the Card Browser Custom Visual. The Card Browser allows you to...
2017-11-13
1,031 reads
In this module you will learn how to use the Image Timeline Custom Visual. The Image Timeline is a great...
2017-11-21 (first published: 2017-11-08)
1,346 reads
In this module you will learn how to use the Enlighten Stack Shuffle Custom Visual. The Enlighten Stack Shuffle is...
2017-11-14 (first published: 2017-11-01)
1,970 reads
In this module you will learn how to use the Cylindrical Gauge Custom Visual by MAQ Software. The Cylindrical Gauge...
2017-11-07 (first published: 2017-10-24)
1,596 reads
In this module you will learn how to use the Heat Streams Custom Visual. The Heat Streams visual allows you...
2017-10-16
824 reads
In this module you will learn how to use the HTML Viewer. The HTML Viewer allows you to display the...
2017-10-17 (first published: 2017-10-09)
1,813 reads
In this module you will learn how to use the Timeline Storyteller. The Timeline Storyteller is a great way to...
2017-10-10 (first published: 2017-10-02)
2,032 reads
In this module you will learn how to use the Custom Calendar by Akvelon. The Custom Calendar by Akvelon is...
2017-10-03 (first published: 2017-09-25)
2,106 reads
In this module you will learn how to use the Heatmap Custom Visual. The Heatmap is useful for show data...
2017-09-26 (first published: 2017-09-19)
2,142 reads
In this module you will learn how to use the Dynamic Tooltip Custom Visual by MAQ Software. The Dynamic Tooltip...
2017-09-11
683 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