MDX in Power BI tutorial
Learn a bit about MDX and how you can incorporate it into your Power BI reports.
2022-11-07
13,875 reads
Learn a bit about MDX and how you can incorporate it into your Power BI reports.
2022-11-07
13,875 reads
Business Intelligence Architect, Analysis Services Maestro, and author Bill Pearson introduces five DAX Time Intelligence functions related to Dates: DATESBETWEEN(), DATESINPERIOD(), DATESMTD(), DATESQTD(), and DATESYTD(). He discusses the syntax, uses and operation of each, and then provides hands-on exposure to the functions in Power BI.
2024-01-16 (first published: 2022-11-02)
2,188 reads
In this fourth part of the series, we look at various other plot types in Power BI using Python.
2022-09-26
1,488 reads
In Part 3, we look at how to use Python to create more charts for Power BI.
2022-09-19
1,675 reads
This article continues looking at python code in Power BI to produce charts.
2022-09-12
6,014 reads
This article will show you how to use a Powerpoint theme to modify and beautify a Power BI report.
2022-08-22
5,176 reads
In this step-by-step article, learn how to dynamically select what displays on the X or Y axis of a Power BI chart.
2022-08-17
This article will show how you can code in Python and produce a chart for Power BI.
2022-08-15
14,273 reads
2022-08-12
467 reads
This article shows how you can incorporate Python scripting inside a Power BI report.
2022-08-01
12,445 reads
By DataOnWheels
Ramblings of a retired data architect Let me start by saying that I have...
By Steve Jones
A customer was testing Redgate Data Modeler and complained that it auto-generated PK names....
By Steve Jones
With the AI push being everywhere, Redgate is no exception. We’ve been getting requests,...
Hi everyone, Below is a consolidated summary of what we validated Architecture & data...
Hi all, I recently moved to a new employer who have their HA setup...
Comments posted to this topic are about the item Semantic Search in SQL Server...
I have this data in a SQL Server 2025 table:
CREATE TABLE Response ( ResponseID INT NOT NULL CONSTRAINT ResponsePK PRIMARY KEY , ResponseVal VARBINARY(5000) ) GOIf I want to get a value from this table that I can add to a URL in a browser, which of these code items produces a result I can use? See possible answers