Power BI Custom Visuals Class (Module 67 – Impact Bubble Chart)
In this module you will learn how to use the Impact Bubble Chart Custom Visual. The Impact Bubble Chart is...
2017-09-19 (first published: 2017-09-05)
2,408 reads
In this module you will learn how to use the Impact Bubble Chart Custom Visual. The Impact Bubble Chart is...
2017-09-19 (first published: 2017-09-05)
2,408 reads
In this module you will learn how to use the Calendar Custom Visual by Tallan. The Calendar Visual provides a...
2017-08-29
812 reads
In this module you will learn how to use the Visio Visual Custom Visual. The Visio Visual allows you to...
2017-09-05 (first published: 2017-08-24)
1,735 reads
In this module you will learn how to use the Dot Plot Custom Visual by MAQ Software. The Dot Plot...
2017-08-29 (first published: 2017-08-17)
1,552 reads
In this module you will learn how to use the Quadrant Chart Custom Visual. The Quadrant Chart is used to...
2017-08-09
637 reads
There is a video that walks you through the solution in depth, please find the video at the end of...
2017-08-08
661 reads
In this module you will learn how to use the Beyondsoft Calendar Custom Visual. The Beyondsoft Calendar displays a single...
2017-08-22 (first published: 2017-07-31)
1,581 reads
In this module you will learn how to use the Power KPI Custom Visual. The Power KPI displays your KPI...
2017-08-08 (first published: 2017-07-25)
2,154 reads
In this module you will learn how to use the Drilldown Player Custom Visual. The Drilldown Player acts like a...
2017-08-01 (first published: 2017-07-18)
1,723 reads
In this module you will learn how to use the Drilldown Cartogram Custom Visual. The Drilldown Cartogram is a map...
2017-07-18 (first published: 2017-07-11)
2,009 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