Multiple Relationships on the same Table in a Power BI Data Model
This article will cover how to create multiple relationships between the same tables in Power BI to build the data model you need.
2023-06-12
This article will cover how to create multiple relationships between the same tables in Power BI to build the data model you need.
2023-06-12
Learn how to build and format a Sankey Chart using Power BI along with step-by-step instructions.
2023-02-27
Learn how you can use Power BI to forecase the future trends of data.
2025-05-26 (first published: 2023-02-27)
50,237 reads
In this article, we will learn how to use a REST API from Power BI to get data for a report.
2022-12-16
23,499 reads
Learn how you can use PostgreSQL data in a Power BI report.
2022-11-14
6,225 reads
Learn how to refresh a Power BI dataset by integrating Power Automate into the report.
2022-11-11
Learn a bit about MDX and how you can incorporate it into your Power BI reports.
2022-11-07
13,230 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,150 reads
In this fourth part of the series, we look at various other plot types in Power BI using Python.
2022-09-26
1,403 reads
In Part 3, we look at how to use Python to create more charts for Power BI.
2022-09-19
1,612 reads
By Steve Jones
I’ve been very happy with Docker Desktop for years, running it on both laptop...
By Rayis Imayev
(2025-June-15) Long gone are the days when a data engineer could simply focus on building...
By Ed Elliott
I recently encountered an interesting issue with ADF where the publish feature suddenly attempted...
The LA Data Platform User Group had a necessary speaker cancellation for the group...
Comments posted to this topic are about the item How Many Can Be the...
Comments posted to this topic are about the item How to process images and...
I am trying to analyze a number of columns in a large table to determine the highest value for each row. In SQL Server 2022, we have the GREATEST function, which will return the greatest value from those columns passed in. How many columns can I include in an expression like this:
select GREATEST( col1, col2, col3, ...)See possible answers