Power BI Custom Visuals Class (Module 20 – Word Cloud)
In this module you will learn how to use the Word Cloud Power BI Custom Visual. The Word Cloud is...
2016-10-18 (first published: 2016-10-10)
1,825 reads
In this module you will learn how to use the Word Cloud Power BI Custom Visual. The Word Cloud is...
2016-10-18 (first published: 2016-10-10)
1,825 reads
Welcome back to another episode of This Week In Data! If you missed our previous episodes, you can watch them...
2016-10-05
434 reads
In this module you will learn how to use the Chiclet Slicer Power BI Custom Visual. The Chiclet Slicer is...
2016-10-04
961 reads
Welcome back to another episode of This Week In Data! If you missed our previous episodes, you can watch them...
2016-09-28
1,243 reads
In this module you will learn how to use the Stream Graph chart Power BI Custom Visual. The Stream Graph...
2016-10-11 (first published: 2016-09-27)
2,327 reads
Welcome back to another episode of This Week In Data! If you missed our previous episodes, you can watch them...
2016-09-21
579 reads
In this module you will learn how to use the Sunburst chart Power BI Custom Visual. The Sunburst chart is...
2016-09-27 (first published: 2016-09-19)
1,899 reads
In this module you will learn how to use the Bubble chart Power BI Custom Visual. The Bubble chart allows...
2016-09-22 (first published: 2016-09-15)
1,525 reads
Welcome back to another episode of This Week In Data! If you missed our previous episodes, you can watch them...
2016-09-14
512 reads
Welcome back to another episode of This Week In Data! If you missed our previous episodes, you can watch them...
2016-09-07
849 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