Power BI Custom Visuals Class (Module 95 – VitaraCharts–MicroChart)
In this module you will learn how to use the VitaraCharts – MicroChart. The VitaraCharts – MicroChart provides a intuitive way to...
2018-03-23
1,032 reads
In this module you will learn how to use the VitaraCharts – MicroChart. The VitaraCharts – MicroChart provides a intuitive way to...
2018-03-23
1,032 reads
In this module you will learn how to use the Count Down Timer. The Count Down Timer is a very...
2018-03-16
388 reads
In this module you will learn how to use the Mapbox Visual. The Mapbox Visual allows you to visualize geographical...
2018-03-20 (first published: 2018-03-09)
2,660 reads
In this module you will learn how to use the KPI Indicator Custom Visual by MAQ Software. The KPI Ticker...
2018-03-13 (first published: 2018-03-01)
3,095 reads
In this module you will learn how to use the Smart Filter by OKViz. The Smart Filter works similar to...
2018-03-06 (first published: 2018-02-22)
2,500 reads
In this module you will learn how to use the Brick Chart by MAQ Software. The Brick Chart provides a...
2018-02-27 (first published: 2018-02-13)
2,519 reads
Recently I took and passed the Microsoft certification exam 70-778 for Power BI called Analyzing and Visualizing Data with Microsoft...
2018-02-23 (first published: 2018-02-12)
2,349 reads
In this module you will learn how to use the Filter by List Custom Visual. The Filter by List allows...
2018-02-20 (first published: 2018-02-08)
2,484 reads
In this module you will learn how to use the Pulse Chart Custom Visual. The Pulse Chart can easily display...
2018-02-13 (first published: 2018-01-31)
2,520 reads
In this module you will learn how to use the Funnel with Source Custom Visual by MAQ Software. The Funnel...
2018-01-30 (first published: 2018-01-24)
1,241 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