top of page
Power BI | Excel | Python | SQL
Search

Antriksh Sharma
Nov 21, 20242 min read
Fixing Lineage issue when JOIN-ing tables in DAX
DAX has 2 functions that allow you to JOIN tables and columns i.e. NATURALINNERJOIN & NATURALLEFTOUTERJOIN, although there is no...
1290

Antriksh Sharma
Apr 30, 20242 min read
Change storage mode of a Table in Power BI
As the title says how do you really do it? Because you can go from DirectQuery <> Dual > Import but you can't go from Import to Dual or...
4110

Antriksh Sharma
Apr 13, 20244 min read
Using DETAILROWS with WINDOW functions in DAX
DAX doesn't have the concept of global variables so reusing a piece of code by referencing it somewhere else isn't possible, luckily the...
1,6821

Antriksh Sharma
Oct 28, 20233 min read
Move Power BI Datasets to different workspace with Python
As the title suggest let's see how to move (technically recreate) a PBI dataset in PBI service into a different workspace, the gist of...
8040

Antriksh Sharma
Jun 28, 20232 min read
Installing TOM Library to connect Python to Power BI & SSAS
In this blog I want to show how you can load the Tabular DLL to connect Python with Power BI, SSAS, or PBI Service. I am going to refer...
1,9240

Antriksh Sharma
Jun 12, 20232 min read
Convert Hour Minute Seconds text to Minutes in Power Query
In this post let's take a look at how to convert a text string such as 2h15m8s to 135.13 minutes This is the table that we are working...
7830

Antriksh Sharma
May 16, 20233 min read
Export users in Power BI Workspaces with Python and REST API
In this blog let's take a look at how you can use Python to export users across all workspaces in Power BI Service into an Excel file....
9590

Antriksh Sharma
May 10, 20234 min read
Applying a Filter on Dimension vs Fact in DAX
While working with DAX, a common mistake that anyone makes (that I also made) is to think that applying a filter on a column of a...
3,4620

Antriksh Sharma
Apr 28, 20231 min read
ALL Functions vs Security in DAX
One thing that we are used to is ALL functions ignore filters and return either a unique value or complete table when used as a table...
3890

Antriksh Sharma
Apr 3, 20234 min read
Refresh Individual Power BI Tables or Partitions with PowerShell
Power BI Service allows you to refresh your model completely but sometimes that's not what you want specifically when you are making...
1,9900


Antriksh Sharma
Mar 11, 20232 min read
Add or Remove a User or Group from all Workspaces in Power BI Service
Here is PowerShell script that adds a particular user or a group to all the workspaces in a tenant. The Where-Object method filters the...
2,4010

Antriksh Sharma
Feb 16, 20231 min read
445, 454, or 544 Week table in Power BI and Excel
I was looking for a good week based date table on Internet and found only 1-2 but I didn't find columns that I needed, so my search ended...
4510

Antriksh Sharma
Feb 5, 20233 min read
Extract model.bim file from Power BI & SSAS Tabular with Python
Model.bim is a JSON file which is the skeleton of your Power BI or SSAS Model, using this file you can create a database from scratch,...
2,9851

Antriksh Sharma
Oct 24, 20222 min read
Get all Reports from Power BI Service using Rest API and PowerShell
Someone asked on Power BI Service on how to get all reports across all Premium workspaces so I started reading documentation and found...
2,5200

Antriksh Sharma
Jul 8, 20223 min read
Performance penalty of Measures in Filters Pane in Power BI
In this blog let's take a look at the performance of a report when you use a Measure in the Filter Pane. Let's say you have a data model...
1,1512

Antriksh Sharma
Apr 29, 20223 min read
Complex behaviour of slicers in Power BI
Recently I faced a situation where a simple measure such as COUNTROWS was returning a blank, yeah what's up with that? COUNTROWS...
6280

Antriksh Sharma
Mar 28, 20225 min read
Full Outer Join in DAX in Power BI and SSAS Tabular
DAX language of Power BI and SSAS Tabular doesn't have a function for Full Outer Join so in this blog we are going to see a work around...
3,6520

Antriksh Sharma
Mar 10, 20227 min read
Getting started with Aggregations in Power BI - Part 1
In this article let's take a look at how to get started with aggregations feature in Power BI. I will try to explain aggregations in a...
6310

Antriksh Sharma
Oct 12, 20212 min read
Implementing Object Level Security in Power BI
In this blog lets see how we can implement OLS or Object Level Security in Power BI. In simple terms the difference between RLS and OLS...
4320

Antriksh Sharma
Sep 26, 20213 min read
How to extract measures from Power BI to Excel or Text file?
A very common scenario in Power BI is of extracting measure into text file and then loading them back again in the Power BI file so that...
5,5971

Antriksh Sharma
Sep 16, 20211 min read
Tabular Editor 3 Course
TE3 is the ultimate development tool for creating Tabular Model and recently I got an opportunity to make a full fledged course on it for...
1260

Antriksh Sharma
Sep 3, 20211 min read
How To Load Data In Power BI With Stored Procedure and Parameters
In this blog let's see how we can combine Stored Procedure and Parameters to load data into PBI. First we need to create a very basic...
4,8130

Antriksh Sharma
Aug 11, 20211 min read
Ecommerce Dashboard in Power BI
Recently participated in the Onyx Ecommerce challenge on LinkedIn and made this dashboard, nothing too fancy it is just something I made...
7180

Antriksh Sharma
Aug 3, 20212 min read
Previous Year calculation in case of missing years in DAX.
One of the most common time intelligence calculations that I see in each report is that of Previous Year, this calculation is pretty easy...
1,1330
bottom of page