Power BI Custom Visuals Class (Module 49 – SandDance)
In this module you will learn how to use the SandDance Power BI Custom Visual. The SandDance visual is an...
2017-05-16 (first published: 2017-05-01)
2,348 reads
In this module you will learn how to use the SandDance Power BI Custom Visual. The SandDance visual is an...
2017-05-16 (first published: 2017-05-01)
2,348 reads
In this module you will learn how to use the Time Brush Power BI Custom Visual. The Time Brush gives...
2017-05-02 (first published: 2017-04-25)
1,386 reads
In this module you will learn how to use the Line Dot Chart Power BI Custom Visual. The Line Dot...
2017-04-26 (first published: 2017-04-18)
1,403 reads
In this module you will learn how to use the Table Sorter Power BI Custom Visual. The Table Sorter allows...
2017-04-13
842 reads
In this module you will learn how to use the Network Navigator Power BI Custom Visual. You may find the...
2017-04-12 (first published: 2017-04-06)
1,377 reads
In this module you will learn how to use the Attribute Slicer Power BI Custom Visual. Using the Attribute Slicer...
2017-03-29
1,152 reads
In this module you will learn how to use the Gantt Power BI Custom Visual. Using the Gantt chart you...
2017-04-04 (first published: 2017-03-21)
2,513 reads
In this module you will learn how to use the Stars Power BI Custom Visual. The Stars visual is a...
2017-03-14
840 reads
In this module you will learn how to use the Image Viewer Power BI Custom Visual. The Image Viewer visual...
2017-03-14 (first published: 2017-03-07)
2,158 reads
In this module you will learn how to use the Long Text Viewer Power BI Custom Visual. The Long Text...
2017-03-07 (first published: 2017-02-28)
2,286 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