Power BI Custom Visuals Class (Module 110 – Icon Map)
In this module you will learn how to use the Icon Map. The Icon Map allows you to display your...
2018-07-17 (first published: 2018-07-09)
2,394 reads
In this module you will learn how to use the Icon Map. The Icon Map allows you to display your...
2018-07-17 (first published: 2018-07-09)
2,394 reads
In this module you will learn how to use the as Timeline visual. The as Timeline is a Gantt chart...
2018-07-03 (first published: 2018-06-28)
2,862 reads
In this module you will learn how to use the PowerApps Custom Visual. The PowerApps visual allows you to embed...
2018-06-18
668 reads
In this module you will learn how to use the Advance Card. The Advance Card is similar to the native...
2018-06-26 (first published: 2018-06-12)
2,811 reads
This is a temporary post that was not deleted. Please delete this manually. (e4f4591b-a7d5-4be4-937e-8d6230ec51d8 – 3bfe001a-32de-4114-a6b4-4005b770f6d7)
2018-06-12
930 reads
This month I continued my series with my friend Manuel Quintana [Blog | Twitter] as we guide you through some of...
2018-06-18 (first published: 2018-06-06)
2,406 reads
In this module you will learn how to use the Ring Chart by MAQ Software. The Ring Chart is similar...
2018-06-12 (first published: 2018-06-04)
2,261 reads
In this module you will learn how to use the Text Wrapper by MAQ Software. The Text Wrapper allows you...
2018-06-05 (first published: 2018-05-29)
2,028 reads
In this module you will learn how to use the User List by CloudScope. The User List by CloudScope is...
2018-05-29 (first published: 2018-05-22)
2,539 reads
In this module you will learn how to use the Timeline by CloudScope. The Timeline by CloudScope is designed for...
2018-05-15
905 reads
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...
By Chris Yates
Artificial intelligence is no longer a distant concept. It is here, embedded in the...
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