Power BI Fixer — One Line to Fix Them All

How a single Python call in a Fabric Notebook can assess, standardize, and fix your Power BI reports and semantic models at scale.

DISCLAIMER: RUN THE SCRIPT AT YOUR OWN RISK. NOT MICROSOFT AFFILIATED.

Try it out → Go here

1. Why This Matters

Every Power BI developer knows the pain. You inherit a report — or revisit one you built six months ago — and find pie charts everywhere, axis labels on bar charts that serve no purpose, the default 720×1280 page size from 2018, visual filters that confuse end users, no calendar table, no “Last Refresh” indicator, and implicit measures galore.

Fixing all of that manually means clicking through dozens of property panes, writing Tabular Editor scripts, exporting TMDL, or opening the JSON files in Power BI Desktop developer mode. And that is just for one report.

What if you could do it all — for any report in any workspace — in a single line?

pbi_fixer()

That is not a concept. That is a working function, built on top of Semantic Link Labs, running natively inside a Microsoft Fabric Notebook. No external tools. No downloads. No separate C# runtime. Just Python, the Fabric APIs, and one function call.

A big thank you to Michael Kovalsky, the creator and maintainer of Semantic Link Labs. His work laid the groundwork that makes the PBI Fixer possible. He also pointed me in the right direction when I was exploring whether an interactive UI was even feasible inside a Fabric Notebook. Without Semantic Link Labs, none of this would exist.

The Game Changer: A Native Fabric Solution

One Line. (Nothing Else.)

The PBI Fixer is a notebook-native interactive UI built with ipywidgets. When you call pbi_fixer(), it renders a complete control panel directly in your notebook cell output:

  • Workspace / Report / Page input fields to target exactly what you need
  • Mode selector — Fix, Scan, or Scan + Fix
  • 11 fixers split across two categories — Report Visuals and Semantic Model
  • Checkbox control — pick exactly the fixers you want
  • XMLA write confirmation — a safety gate for semantic model modifications
  • Progress log — live output showing every action, every finding, every fix

You get the same result whether you point it at a report in your personal workspace or at a production workspace with a service principal. It is the same API, the same tool, the same one line.

PBI Fixer UI in a Fabric Notebook

If You Are Not on Fabric, You Are Missing Out

Let me be direct: if you are still exclusively on Power BI Pro or Premium Per User without a Fabric capacity, you are missing out on an entire generation of tooling. The PBI Fixer leverages:

  • Fabric Notebooks — serverless Python compute with ipywidgets for interactive UIs
  • PBIR format — the enhanced report format that exposes every visual property as JSON, readable and writable through the Fabric REST API
  • XMLA endpoints — read/write access to the Tabular Object Model (TOM) for semantic model modifications
  • Semantic Link Labs — a community-driven Python library (pip install semantic-link-labs) that wraps all of this into clean, documented functions

None of this requires downloading anything to your machine. You open a notebook, run one cell, and you have an interactive report-fixing tool at your fingertips. This is what a modern BI platform looks like — and Fabric delivers with being able to run this community‑driven tool directly integrated. But also let’s be clear again: the Power BI Fixer is obviously not a Microsoft product.

2. What the PBI Fixer Does — In Detail

The tool is split into two categories, each addressing a different layer of your Power BI solution.

Report Fixers (5 Fixers at the time of writing)

These fixers operate on the report definition — the PBIR JSON files that describe every visual, page, and filter in your report. They use the connect_report() context manager to read (and optionally write) the report definition through the Fabric REST API. Some of the following fixes could more easily be applied by adding on single json design theme to the report, but this would not fix any chart where the default has been touched, therefore the following fixes are directly modifying the property of each visual / page.

1. Fix Pie Charts

Problem: Pie charts are one of the worst chart types for comparing values. Human perception of angles and areas is far less accurate than perception of length (bars). Yet pie charts remain one of the most used visuals in Power BI.

What it does: Replaces every pieChart visual in the report with a clusteredBarChart (configurable in the function itself). The data bindings, filters, and layout are preserved — only the visual type changes.

Scan mode: Reports exactly how many pie charts exist and on which pages, without modifying anything.

🔍 [1/5] Scanning Fix Pie Charts…
   🟡 definition/pages/abc123/visuals/def456/visual.json — pie chart found (would be replaced with clusteredBarChart)

2. Fix Bar Charts

Problem: Bar charts are great — but Power BI’s default formatting includes axis titles nobody reads, axis value labels that duplicate the data labels, and gridlines that add visual clutter.

What it does: Applies five best-practice formatting rules to every barChart and clusteredBarChart:

Setting Target Why
X axis title Off The axis title (“Count of Sales”) adds no value — the data labels speak for themselves
X axis values Off Redundant when data labels are shown directly on the bars
Y axis title Off Category names are self-explanatory
Data labels On The single most important formatting choice — show the actual numbers
Vertical gridlines Off Reduces visual noise

Scan mode: Reports which specific properties deviate from the target for each visual, so you know exactly what would change.

🟡 definition/pages/…/visual.json — needs fixing: X axis title, X axis values, Data labels

3. Fix Column Charts

Problem: Same issues as bar charts, but with axes flipped. Power BI’s defaults for column charts include unnecessary axis titles, missing data labels, and gridlines.

What it does: Applies the equivalent five formatting rules to every columnChart and clusteredColumnChart, with the axis semantics appropriately swapped.

4. Fix Page Size

Problem: The default Power BI page size is 720×1280 pixels — a legacy from when Full HD was not universal. Reports created with this size appear small and waste screen real estate on modern displays.

What it does: Upgrades pages from the default 720×1280 to 1080×1920 (Full HD). Pages with custom sizes are left untouched — only the exact default match triggers a fix.

Scan mode: Reports which pages use the default size and which have custom dimensions.

🟡 “Sales Overview” (definition/pages/abc123/page.json) — default page size (720×1280), would be upgraded to 1080×1920
🟢 “Executive Summary” (definition/pages/def456/page.json) — custom size (800×1200), no change needed

5. Hide Visual Filters

Problem: Power BI automatically creates visual-level filters for every field used in a visual. These filters appear in the Filters pane and confuse end users who do not understand the distinction between visual, page, and report filters. Most report developers would rather hide them entirely.

What it does: Sets isHiddenInViewMode = True on every visual-level filter. For visuals that have query fields but no filterConfig, one is constructed automatically — the tool walks the visual’s queryState, classifies each field as Categorical or Advanced (for measures), and creates the hidden filter entries from scratch.

Scan mode: Reports how many visuals have visible filters and how many filters would be hidden.

Semantic Model Fixers (6 Fixers at the time of writing)

These fixers operate on the semantic model (the dataset) behind the report. They use the XMLA endpoint and the Tabular Object Model (TOM) through connect_semantic_model(). Because XMLA write operations are irreversible (the model can no longer be downloaded as a .pbix with embedded data after modification), the UI requires an explicit confirmation checkbox before running these fixers.

1. Discourage Implicit Measures

Problem: By default, Power BI allows end users to drag columns into the Values bucket and get automatic SUM/COUNT/etc. aggregations. This creates “implicit measures” that cannot be formatted, documented, or governed. It is also a prerequisite for calculation groups — they simply do not work correctly with implicit measures enabled. Actually if a calculation group is added this setting is automatically set to TRUE

What it does: Sets DiscourageImplicitMeasures = True on the model. One property, one toggle, impact the whole model.

2. Add Calendar Table (CalcCalendar)

Problem: Almost every analytical model needs a calendar (date) table. Yet many models either lack one entirely or use a poorly structured one. Without a proper calendar table marked with DataCategory = Time, time intelligence functions do not work and auto date/time creates hidden tables for every date column.

What it does: Checks if any table in the model has DataCategory = “Time”. If none exists, creates a comprehensive CalcCalendar calculated table with:

  • 20 columns — Date, Year, Quarter, Month (number and abbreviation), Day, Fiscal Year (October start), End of Month, Week of Year, Weekday, and 9 boolean/flag columns (Is Current Month, Is Previous Month, Is Current/Previous Calendar Year, Is Current/Previous Fiscal Year, Is Before This Month, Is Current or Past Month, Month Key, Relative Month)
  • 3 hierarchies — Date Hierarchy (Year → Quarter → Month → Day), Fiscal Date Hierarchy (Fiscal Year → Quarter → Month → Day), Calendar Hierarchy (Year → Month MMM → Week of Year → Weekday)
  • Display folders — Organized into Favorites, Calendar Date, Fiscal Date, and Flags
  • Sort-by-column — Month abbreviation sorted by month number
  • Marked as date table with the Date column as key

The DAX expression uses CALENDARAUTO() and derives all columns dynamically. The fiscal year start month is configurable (default: October).

3. Add Last Refresh Table

Problem: Users and administrators need to know when a dataset was last refreshed. This is especially critical for business-critical reports where stale data leads to wrong decisions.

What it does: Creates a hidden “Last Refresh” table with:

  • M partition (Power Query) that captures DateTime.LocalNow() on every refresh
  • Data column storing the refresh timestamp
  • Measure “Last Refresh Measure” displaying the formatted timestamp
  • Smart placement — If a “Measure” table exists, the measure is placed there instead of in the Last Refresh table, keeping things organized

4. Add Measure Table

Problem: Without a dedicated measure table, measures are scattered across fact and dimension tables. This makes them hard to find, hard to maintain, and easy to duplicate.

What it does: Creates an empty calculated table named “Measure” using the minimal expression {0} (a single-row, single-column placeholder). The auto-generated column is hidden, so only measures placed in this table are visible to the end user.

5. Add Units Calculation Group (Thousand / Million)

Problem: Displaying large numbers like “1,234,567” clutters visuals and makes comparison harder. Users often want to see “1,235K” or “1.2M”. Creating individual measures for every combination is not scalable.

What it does: Creates a “Units” calculation group with two items:

  • Thousand — divides by 1,000
  • Million — divides by 1,000,000

Both items include smart skip logic: measures whose name contains % or ratio are passed through unchanged — dividing a percentage by 1,000 would produce nonsense. The DAX uses DIVIDE() for safe division and checks ISNUMBER(SELECTEDMEASURE()) before applying.

Note: Calculation groups affect all visuals that use the slicer. The fixer includes a performance warning in its output.

6. Add Time Intelligence Calculation Group (21 Items)

Problem: Time intelligence is the most common analytical requirement — comparing this year to last year, computing year-to-date, calculating variances. Building these for every measure individually is tedious and error-prone. A calculation group solves this once for all measures.

What it does: Creates a “Time Intelligence” calculation group with 21 calculation items:

Category Items
Base periods AC (Actual), Y-1 (Prior Year), Y-2 (Two Years Ago), Y-3 (Three Years Ago)
Year-to-date YTD, YTD-1 (Prior Year YTD), YTD-2 (Two Years Ago YTD)
Absolute variances abs. AC vs Y-1, abs. AC vs Y-2, abs. AC vs YTD-1, abs. AC vs YTD-2
Relative variances AC vs Y-1 (%), AC vs Y-2 (%), AC vs YTD-1 (%), AC vs YTD-2 (%)
Achievement achiev. AC vs Y-1, achiev. AC vs Y-2, achiev. AC vs YTD-1, achiev. AC vs YTD-2

The DAX is generated dynamically based on the actual calendar table and date column names in the model. It uses SAMEPERIODLASTYEAR(), DATEADD(), DATESYTD(), and TOTALYTD() — all parameterized so they work regardless of how your calendar table is named.

Prerequisite: Requires a calendar table with DataCategory = “Time”. The fixer checks for this and prints a helpful message suggesting to run the Calendar fixer first if none exists.

3. Scan vs. Fix — Assess Before You Act

Every fixer in the PBI Fixer supports two modes:

Scan Mode

Scan mode is read-only. It opens the report or semantic model with readonly=True, checks every condition, and reports what would change — without touching anything. This is your assessment tool.

Use it to:

  • Audit a report before handing it to a client
  • Baseline the current state before applying fixes
  • Review across multiple reports to prioritize which ones need the most work

The output is a detailed log with green dots (✅ already correct), yellow dots (⚠️ would be fixed), and clear descriptions of each finding.

Fix Mode

Fix mode opens the report or semantic model with readonly=False and applies all selected fixes. The report definition changes are saved back to the Fabric service through the REST API. Semantic model changes are saved through the XMLA endpoint via TOM.

Scan + Fix

The third mode runs both phases sequentially: first a complete scan to document the current state, then a full fix pass. This gives you a before-and-after view in a single run.

4. How It Compares to Other Solutions

Tabular Editor C# Scripts

Let me be clear: I am a huge fan of Tabular Editor. For example TE’s C# scripting engine is powerful, mature, and battle-tested. Being able to save reusable C# scripts as one-click actions in your toolbar makes repetitive model tasks fast and consistent. If you work with semantic models professionally, Tabular Editor should absolutely be in your toolkit.

That said, there are scenarios where the PBI Fixer complements what Tabular Editor offers:

  • Local install required — Tabular Editor must be downloaded and installed on a Windows machine (or run as a portable version). The PBI Fixer runs entirely in a Fabric Notebook — no installs, no local machine dependency
  • C# vs. Python — Tabular Editor’s scripting language is C#. If your team lives in notebooks and Python, switching to C# for model automation is a context switch. The PBI Fixer keeps everything in one language and one environment
  • Semantic model only — Tabular Editor (understandably) focuses on the semantic model layer. It does not touch the report definition — it cannot fix pie charts, page sizes, or visual filters. The PBI Fixer covers both layers in a single tool
  • Interactive notebook UI — Tabular Editor scripts are run from a script editor, command line, or via Macros in the TE UI. The PBI Fixer provides an interactive widget directly inside a notebook, which fits naturally into Fabric-native workflows
  • License cost — TE3 (with the full scripting engine and Macros) requires a paid license, mho worth it for professional use, but it is a consideration for teams already invested in Fabric

Use Tabular Editor and its Macros for deep semantic model work at your desk. Use the PBI Fixer when you need report-layer fixes, notebook-native automation, or a single entry point that spans both layers without leaving Fabric.

TMDL Scripts / Git-Based Workflows

TMDL (Tabular Model Definition Language) is Microsoft’s text-based serialization format for semantic models. You can version-control your models in Git and apply changes through text manipulation.

  • Great for version control — TMDL excels at tracking changes over time
  • Manual text editing — adding a 20-column calendar table means writing 200+ lines of TMDL by hand
  • No report layer — TMDL is semantic-model-only, same as Tabular Editor
  • No assessment — you cannot “scan” a TMDL folder to find what is missing; you need to read and interpret the files yourself
  • Deployment pipeline required — changes in TMDL need to be deployed back to the service through Git integration or a deployment tool

The PBI Fixer’s scan mode provides the assessment that TMDL workflows lack, and its fix mode applies changes directly without requiring a full deployment pipeline.

Manual Modifications in Power BI Desktop

The most common approach: open the report, click through property panes, change settings, save, publish.

  • Time-consuming — fixing five formatting properties on ten bar charts means 50+ individual clicks
  • Error-prone — easy to miss a visual or forget a setting
  • Not scalable — doing this for 20 reports across five workspaces is a full day of work
  • No audit trail — no record of what was changed or what the previous state was
  • Not repeatable — the next report you create has the same default problems

The PBI Fixer is repeatable, consistent, and logs everything all by design.

Power BI REST API / Fabric SDK (Custom Python)

You could build this yourself using the raw Fabric REST API and the semantic-link SDK.

  • Maximum flexibility — you can do anything the API supports
  • Significant development effort — understanding the PBIR JSON schema, handling authentication, managing error cases, building a UI
  • No community — your custom scripts are yours to maintain

The PBI Fixer is built on top of Semantic Link Labs, which handles the heavy lifting. It uses connect_report() for the PBIR layer and connect_semantic_model() for TOM — both are well-tested, community-maintained abstractions over the raw APIs.

5. Getting Started

Prerequisites

  • A Microsoft Fabric capacity (F2 or higher, or a trial capacity)
  • A Fabric Notebook in your workspace
  • Semantic Link Labs installed – see script below
  • Reports in PBIR format (required for report fixers — check your Preview Features in Power BI Desktop, enable PBIR, save, and re-publish if your report is still in PBIRLegacy). The Fixer will also tell you in case it is not.
  • XMLA read/write enabled at the tenant level (Admin Portal → Tenant settings → Integration settings → “Allow XMLA endpoints and Analyze in Excel with on-premises datasets”). By default this is enabled. Required for semantic model fixers.
  • Large semantic model storage format enabled (Workspace Settings → Power BI → Large dataset storage format → ON). This applies to all datasets in the workspace and sets DefaultPowerBIDataSourceVersion to V3, which is required for any XMLA write operation. Without it, semantic model fixers will fail.

Usage

Two cells — that is all it takes. Install and import takes approx 1 min, the Fixer itself will run within seconds.

# Cell 1: Install and import
%pip install git+https://github.com/KornAlexander/semantic-link-labs.git
from sempy_labs.report import pbi_fixer

# Cell 2: Run
pbi_fixer()

Splitting this into two cells is intentional. The install only needs to run once per session — after that you can skip Cell 1 entirely and just re-run Cell 2. It also keeps things clean: use “Clear Output” on Cell 1 to remove the verbose pip installation log, so only the interactive PBI Fixer UI remains visible in your notebook.

The interactive UI renders in the cell output. Enter your workspace and report name, select the fixers you want, choose your mode, and click Run.

Note: If your report was uploaded as a .pbix file, it may be in PBIRLegacy format — the visual fixers won’t find any charts until you convert it. Open the report in Power BI Desktop, save it, and re-publish to convert to PBIR. Also make sure Large semantic model storage format is enabled in the workspace settings (see prerequisites above) — without it, all semantic model fixers will fail with an XMLA write error.

> Note: The PBI Fixer currently lives in a fork. Once it is part of the official Semantic Link Labs package, this becomes a true one-liner — just %pip install semantic-link-labs followed by pbi_fixer(). I am working toward getting it merged into the main repository, but given the scope of the fixers and the UI layer, this may take some time and may not happen at all.

For automation or scripting without the UI, call any fixer function directly:

from sempy_labs.report import fix_piecharts, fix_barcharts

# Scan only — see what would change
fix_piecharts(report="Sales Dashboard", workspace="Production", scan_only=True)

# Fix — apply the changes
fix_barcharts(report="Sales Dashboard", workspace="Production")

6. The Road Ahead

The PBI Fixer is designed as a framework, not a fixed set of rules. Each fixer is an independent Python function with a consistent interface: report, workspace, scan only. Adding a new fixer is as simple as writing one function and wiring it into the UI.

Currently available fixers:

Report Fixers

  • fix_piecharts — replaces all pie charts with Clustered Bar Charts
  • fix_barcharts — removes axis titles/values, adds data labels, removes gridlines
  • fix_columncharts — removes axis titles/values, adds data labels, removes gridlines
  • fix_page_size — changes default 720×1280 pages to 1080×1920 (Full HD)
  • fix_hide_visual_filters — sets isHiddenInViewMode on all visual-level filters

Semantic Model Fixers

  • fix_discourage_implicit_measures — sets DiscourageImplicitMeasures to True (recommended & required for calc groups)
  • add_calculated_calendar — adds a calculated calendar table if no table has been marked as a date table
  • add_measure_table — adds an empty “Measure” calculated table to centralise measures
  • add_last_refresh_table — adds a “Last Refresh” table with M partition & measure showing refresh timestamp
  • add_calc_group_units — Thousand & Million items, skips % / ratio measures
  • add_calc_group_time_intelligence — AC, Y-1/Y-2/Y-3, YTD, abs/rel/achiev. variances (requires calendar table)

What’s especially exciting is that this is hopefully just the beginning—because the whole fixer is built for easy extension, anyone can contribute new fixers or improvements. As more people get involved, the checklists and best practices incorporated by the PBI Fixer will continue to grow and evolve. This open and extensible approach means the tool can adapt to new challenges and community needs over time.

Here is what I find most exciting about the extensibility:

IBCS Implementation

The International Business Communication Standards (IBCS) define a comprehensive set of rules for business charts: uniform scaling, standardized notation, consistent color coding, and strict chart type selection. Some of the PBI Fixer’s concepts already align with IBCS principles:

  • Replacing pie charts — IBCS explicitly discourages pie charts in favor of bar charts
  • Removing axis clutter — IBCS emphasizes clean, uncluttered visuals with data labels instead of gridlines
  • Standardizing page sizes — consistent canvas dimensions are a prerequisite for standardized layouts

These are early steps, but the architecture makes it straightforward to explore further IBCS-aligned fixers over time — and to potentially integrate with IBCS-focused custom visuals like TRUECHART for scenarios where native chart types reach their limits.

Simplifying the Defaults

Power BI’s default settings are optimized for getting started quickly — not always for production-quality reports. The idea is that the Fixer will potentially be extended by further best practice checks and fixes:

  • VertipaqAnalyzer integration — Semantic Link Labs already includes vertipaq_analyzer(). A future fixer could scan the model for high-cardinality columns, unused columns, and oversized string columns, then recommend or apply optimizations automatically
  • Report BPA integration — Semantic Link Labs already ships run_report_bpa() with 9 built-in rules that analyze the report definition for issues like oversized visuals, missing alt text, and excessive filters. Integrating this directly into the PBI Fixer as a scan-capable fixer would give you a full report-level health check alongside the visual fixes — and for rules with deterministic resolutions, auto-fix them in the same pass
  • Model BPA integration — The library’s comprehensive Model BPA covers semantic model best practices. Future fixers could take BPA findings and apply fixes for every rule that has a deterministic resolution — turning “assessment” into “assessment + auto-fix” in one step

What You Can Build Today

Even without waiting for future releases, the framework is open. You can write your own fixer function today:

def fix_my_custom_rule(report, page_name=None, workspace=None, scan_only=False):
    with connect_report(report=report, workspace=workspace, readonly=scan_only) as rw:
        # Your logic here — iterate visuals, check properties, apply fixes
        pass

Wire it into the report_fixers list in the UI, and it appears as a checkbox alongside the built-in fixers. Same for semantic model fixers — write a function that uses connect_semantic_model() and add it to sm_fixers.

The barrier to entry is intentionally low. If you can write a Python function that reads and modifies a dictionary, you can write a fixer.

Final Thoughts

The PBI Fixer is not just a tool — it is a shift in how we think about report quality. Instead of manually checking and fixing every visual property, every model setting, every best practice after the fact, we can now codify our standards and apply them at scale with a single function call.

Fabric’s notebook environment, combined with the PBIR format and the XMLA endpoint, has created something that was simply not possible two years ago: a unified, programmatic, interactive interface to both the report layer and the semantic model layer of Power BI — running entirely in the browser, with zero local tooling.

If you are building Power BI solutions professionally, this is the direction things are moving. One line. Everything assessed. Everything fixed.

pbi_fixer()

My Power BI Toolbox: 80+ Tabular Editor Macros to Automate Data Model Development

When it comes to streamlining your Power BI data modeling, the value of automation cannot be overstated. One of the most powerful tools available to achieve this automation is Tabular Editor, where you can write C# scripts to optimize and automate repetitive tasks. In this blog post, I’ll introduce you to my Power BI Toolbox — an extension of my original Pimp script — and share how it helps bring efficiency and best practices to Power BI data modeling.

Tabular Editor Scripts: The Key to Automation

Tabular Editor Scripts, also referred to as macros, C# scripts, or custom actions, are essential tools for automating actions within Tabular Editor. Tabular Editor, an invaluable tool for Power BI professionals, offers the ability to write custom scripts to save time and ensure consistency in data models. With C# scripting capabilities, you can automate a huge collection of tasks like creating measures, setting properties, and sooo much more.

Over the years, I’ve developed and wide range of these scripts. My Power BI Toolbox is after my PIMP script the next evolution in this journey, containing a suite of over 80 Tabular Editor scripts, each designed to simplify various aspects of Power BI data modeling. If you want to know more about why this stuff is important for Tabular models check out the following video with Reid Havens. https://www.youtube.com/watch?v=-9YaxArn3TM

What’s in the Toolbox?

My Power BI Toolbox is a collection that includes:

  • Many of the Official Tabular Editor repository macros (excluding those exclusive to TE3)
  • Bernat’s macros, You will definitely find hidden gems there.
  • My own macros, which build upon the lessons learned from my earlier PIMP script

More Details on My Favorite Macros

Here are some of my favorite macros that I’ve developed to improve efficiency and automation in Power BI data modeling:

  • Calendar Table as Calculation Group: This macro helps you create a calendar table as a calculation group and mark it as the calendar table in your data model. It’s a quick way to ensure that your time intelligence functions are referencing the correct table.
  • Time Intelligence Calculation Group: This script automatically detects the calendar table and creates a calculation group for common time intelligence measures like Year-to-Date, Quarter-to-Date, Month-to-Date, Previous Year, and more. This reduces manual work and helps ensure consistency in your model.If you have not marked your calendar table as calendar table it will ask you for it.
  • Units Calculation Group: Creates a calculation group for units without splitting text or ratio measures, making it easier to maintain a clean, efficient model structure.
  • Empty Measure Table Creation: This macro allows you to create an empty measure table, which is useful for organizing measures and maintaining a clean data model structure. The script needs to be run in two steps, first creation, than save, than hiding the column.
  • Explicit Measure Creation for Selected Columns: This macro lets you create explicit measures for selected columns and move them into a designated display folder. Additionally, it prompts you with the option to move these measures into a different table, such as an empty measure table, ensuring your data model is organized.
  • Previous Year, Delta PY, and Delta PY % Measure Creation: Automatically generates explicit measures for all selected measures with the variation previous year, delta previous year, and delta previous year percentage. The script is smart enough to recognize the marked calendar table and link these measures appropriately, saving you a lot of repetitive work.
  • Macros Containing Metadata Documentation This macro inspired by Martyn Booth is design to automatically document the model. The macro adds four new calculated tables need to be added, saved, and then hidden as part of the standard workflow. These tables can then be used to effectively document the data model, providing valuable metadata insights. The four calculated tables are: info.view.Tables, info.view.Columns, info.view.Measures, and info.view.Relationships. This approach essentially replaces the need for additional tools like VertiPaq Analyzer or Bravo for Power BI, to a considerable extent. One limitation is the absence of column size information, which would be a useful enhancement, but the benefit of automatic updates makes this a powerful feature for keeping documentation current without extra manual work. More info here: https://www.notjustaprettydashboard.com/auto-documentation-report-using-info-view-dax-functions/
  • Combine Time Intelligence with Value Parameter: This macro, inspired by Mark Endicott, extends my time intelligence template by adding a dynamic value parameter. The number of years is now made dynamic, allowing for more flexibility in time-based analysis. The next step is to make the period selection fully dynamic, enabling switching between different time frames such as year, quarter, month, and day.

These scripts are targeted at best practices in Power BI data modeling, enabling you to standardize and streamline your workflows in a consistent, efficient manner.

No Admin Rights? No Problem

No admin rights? No problem. Just make sure you’re running the latest version of Tabular Editor Portable. This version allows you to use all the powerful features of Tabular Editor without needing to install anything, making it perfect for environments where you lack administrative privileges.

How to Install the Power BI Toolbox for Tabular Editor

Installing the Power BI Toolbox is straightforward. You can use the Installation Script available here: Installation Script. Or as an alternative you can also just copy paste the MacroActions.json file into your AppData\Local\TabularEditor directories. Just paste into your file explorere “%AppData%” and you are already almost there. 

Here is a video of how to install it, if manual is not what you prefer: https://www.linkedin.com/posts/alexanderkorn_hicocando-actionablereporting-tabulareditor-activity-7250519843966181377-sfdd?utm_source=share&utm_medium=member_desktop

The installation script takes care of the following steps:

  1. Backup the MacroActions.json file if it exists in your AppData\Local\TabularEditor or TabularEditor3 directories.
  2. Add a fresh MacroActions.json file from my GitHub repository if one does not already exist.
  3. Append my DataModelToolbox.txt file to the current MacroActions.json file if one exists. Please note, if you already have some of my macros, this script does duplicate all of them.

The MacroActions.json file is where all the magic happens, containing the macros that Tabular Editor will use to automate your Power BI tasks. You can check it out here: MacroActions.json File.

How to Execute C# Scripts in Tabular Editor 2

To execute C# scripts in Tabular Editor 2, follow these simple steps:

  • Connect to Open Power BI Desktop: Start by connecting Tabular Editor to your open Power BI Desktop instance to gain access to the data model.
  • Right-Click Options: You can execute scripts by right-clicking on a table, column, data model, or measure within the model. Depending on the certain Macro it will be visible within the context menu where you can select and run the script.
  • Navigate to the C# Section: Alternatively, you can directly navigate to the C# scripting section within Tabular Editor, where you can write and execute your scripts.

Shortcuts for Macros

In Tabular Editor 3, you can even assign shortcuts to these actions, giving you more flexibility and making repetitive tasks even faster. This is especially useful when working with large and complex data models where efficiency matters most. 

Here is a video of this in action: https://www.linkedin.com/posts/alexanderkorn_do-you-also-have-a-button-to-implement-power-activity-7252416004079677443-0HHC?utm_source=share&utm_medium=member_desktop

You can either set the shortcuts for the macros under Tools > Preferences > Keyboard or alternatively copy and paste my UiPreferences.json file into your directory AppData\Local\TabularEditor3. You can find the UiPreferences.json file here: UiPreferences.json.

I am using the following shortcuts for my macros:

Macro ID Range Shortcut Combination
1 to 9 CTRL + SHIFT + Number (1 to 9)
10 to 19 CTRL + ALT + Number (1 to 9)
20 to 29 CTRL + ALT + SHIFT + Number (1 to 9)

I need to give for the keyboard shortcut and Stream Deck idea full credit to Bernat Agullo Rosello. He gave me the whole idea. I wasn’t aware of Stream Deck till he pointed me that way. While he had the idea, I went ahead and made it real. I am now using a Stream Deck with custom icons for these shortcuts, which allows me to apply data model changes with just the press of a button. This setup significantly enhances my productivity by making these powerful macros available at my fingertips. With the Stream Deck, I can visually organize the most frequently used macros, assign dedicated buttons to each, and execute them instantly. This workflow improvement not only saves time but also makes navigating complex models more intuitive, as I can easily trigger common actions without needing to remember numerous key combinations or navigate through menus.

Sorting the IDs

All Macros have an ID, those can be consequential but don’t need to be. The sorting in Tabular Editor 3 is by default exactly like the MacroActions.json file is sorted. That being said, if you move macros around in the json file, than the IDs do not get automatically adjusted. At the time of writing you will see that actually my file skips a few IDs and is not perfectly sorted. Andreas Nordgaard provided for us a free Python script which does the job.

Save the python script in the same location as the Macro file install python, potentially modify the python script to use the correct parent path and you are good to go.

Just be careful if you change your IDs those will than potentially not match your Tabular Editor 3 shortcuts anymore.

    https://github.com/aols0228/Semantic-Models/blob/main/Macros/MacroActions.json/Update%20Id’s%20in%20MacroActionsJSON.py

    Stream Deck Profile

    In case you also have Stream Deck and want to overcome the hustle to set it up here is my Stream Deck profile, which should have all the icons. Just make sure your shortcuts in TE3 align with the profile. https://github.com/KornAlexander/PBI-Tools/blob/main/Data%20Model%20Toolbox/Tabular%20Editor.streamDeckProfile

    Why Automate?

    The Power BI Toolbox is more than just a collection of scripts; it’s about bringing best practices to every model you create. It’s about removing friction, increasing productivity, and reducing the chance of human error when performing repetitive tasks. Automation lets you focus on what matters most: making data-driven decisions that impact your business.

    Get Started Today

    Ready to give your Power BI data modeling a productivity boost? Install the Power BI Toolbox and start automating today! You can access the installation script here and transform how you model your data or alternativly just add it manually.

    Let me know if you have any questions or if you need help getting started. Maybe do you have a killer script I need to add. Let me know. Would be very happy to receive it. Happy modeling! 🙂


    Video Demo

    “IBCS Power BI Generator”: Automate your Power BI report development

    DISCLAIMER: You are running the tool at your own risk. The tool is currently deleting and replacing all current report pages, including all visuals. So make sure to have a backup. I continuing to develop the tool as we speak. This is hopefully just a start.

    Manual

    1. Enable PBIP+TMDL Preview Feature in Power BI Desktop
    2. Download and run the script
    3. Select your existing PBIP File (Just the data model needed)
    4. Select your logo, corporate color, value column to analyse, date column…
    5. Done

    Introduction

    In today’s data-driven business environment, the need for clear, comprehensive, and automated reporting is more crucial than ever. The IBCS Power BI Implementer is at the forefront of this revolution, offering a fully automated report creation process that is seamlessly integrated with HICO’s Best Practice Templates. This innovative solution not only streamlines the reporting process but also personalizes it to suit your business’s unique needs and branding requirements.

    What is IBCS Power BI Implementer?

    IBCS Power BI Implementer is an executable tool that enhances the capabilities of Power BI, Microsoft’s interactive data visualization software. This Implementer allows you to automate the entire report creation process, from data model configuration to the final design elements. It’s like having an expert assistant that takes over the tedious tasks, freeing you to focus on analyzing the data and gaining insights.

    Key Features of IBCS Power BI Implementer

    The IBCS Power BI Implementer comes with a wide array of features that cater to different aspects of report creation. Here’s a closer look at what each selection option entails:

    Option1: Date Dimension Calculated Table

    Automating the creation of a calculated table for date dimensions ensures that your reports can effectively handle time-based data, which is essential for trend analysis and time series forecasting.

    Option2: Date Dimension PQ Script

    Power Query (PQ) scripts for date dimensions are vital for processing and transforming date-related data, ensuring consistency across all your reports.

    Option3: Last Refresh Table and Measure

    This option automatically generates a table and measure that keep track of the last time your data was refreshed, providing transparency and ensuring data is up-to-date.

    Option4: Calculation Group – Time Intelligence

    Creating calculation groups for time intelligence simplifies the process of comparative analysis over different time periods, such as year-to-date calculations and period-over-period comparisons.

    Option5: Calculation Group – Units

    This allows for automated conversion and handling of various units within your data, making the reports versatile and adaptable to different measurement systems.

    Option6: Empty Measure Table

    An empty measure table is crucial for organizing custom calculations and measures that you may add to enhance your reports.

    Option7: Sales-Dashboard

    Leverage a template with the custom visual TRUECHART to get a jumpstart on visualizing sales metrics in a way that adheres to IBCS standards.

    Option8: Add Background with company colors including PPTX creation

    Customize the visual aspect of your reports by adding a background with your company’s colors, and even generate a PowerPoint presentation for easy sharing and presentation.

    Option9: Add Company Logo to Design

    Personalize your reports further by embedding your company logo, enhancing brand consistency across all corporate communications.

    Option10: Automatically close and reopen Power BI Report

    For updates that require a restart, this feature ensures the process is seamless, saving time and avoiding manual handling errors.

    Option11: Add Relationship between Fact and Date Table

    Establishing relationships between the fact table and the newly created date dimension table is automated, which is a cornerstone for accurate data modeling in Power BI.

    Option12: Select Column for AC value

    Choose the specific column that represents the Actual (AC) value in your reports. The explicit measures for the column AC, PY, Delta PY are automatically created.

    Integrating with Best Practice Templates

    Integration with templates means that your reports won’t just be automated—they’ll be crafted according to the International Business Communication Standards (IBCS). These standards ensure that your reports are not only efficient but also effective in communicating the right information to the right audience.

    Conclusion

    The IBCS Power BI Implementer exemplifies the next step in the evolution of business intelligence reporting. By automating the entire process and ensuring that each report is customized to your company’s design and data model, it significantly reduces the time and effort required to generate insights. Whether you’re a small business or a large corporation, the IBCS Power BI Implementer could be the tool that transforms your data reporting process into a competitive advantage.

    Here is the executable: https://github.com/KornAlexander/PBI-Tools/blob/main/IBCS%20Power%20BI%20Generator.exe

    Alternative Downloadlink: IBCS Power BI Generator.exe

    Myths about Red-Green Deficiency in Visualizations

    Disclaimer: I am not an “Ophthalmologist”, so don’t cite me here and if you actually have a red-green blindness and/or disagree on the following article please ping me via LinkedIn. It is not as simple as it seems. 😊

    Color is a crucial element in data visualization and communication, significantly impacting how effectively information is conveyed. When discussing International Business Communication Standards (IBCS), I hear very often an argument against the use of red and green. The ongoing debate about the use of red and green, primarily due to concerns related to color deficiency needs to be cleared up. There are definitely incomplete arguments floating around. In this article, we’ll explore the misconceptions surrounding IBCS Red-Green Deficiency and how a more nuanced perspective can lead to a better communication.

    Understanding Color Deficiency

    Before delving into the myths, it’s important to grasp the concept of color deficiency and its prevalence. Approximately 8% of men and 0.5% of women of Northern European descent experience red-green color deficiency, also known as color deficiency, not blindness. Nevertheless, it’s vital to remember that not all cases are the same, and there’s a spectrum of color deficiency types, and varying degrees of severity. If I am not mistaken less than 1% of all are completely blind for red and green. And even less with 0.00001% being impacted by Rod Monochromacy, which is actually completely color blind.1

    The 2 Myths

    1. Myth: Sacrificing Pattern Recognition for a Fraction of your Target Audience
      • Since we know now the difference between being color blind and having a deficiency do we really sacrifice our reports for a minority and are there not better options?
      • Red and green are universally recognized as symbols for negative and positive, respectively—a concept deeply ingrained in our psyche. Eliminating these colors could lead to immediate loss of this intuitive “color coding”. There are more effective ways to enhance accessibility. Modern tools are capable of adapting. For instance, while red and green might be the default, an automatic switch to alternative colors can be implemented when necessary.
      • It’s important to note that even the 0.00001% can distinguish red and green if you help them. If you use red and green consistently than they should be able to differentiate them based on saturation. By consistently using highly saturated colors for red and less saturated for green, it could be possible to differentiate the colors based on saturation. However keeping in mind that if you choose a low saturation for green you will make it especially difficult for people with green-deficiency. An example of this approach is illustrated at the bottom of this article.
    2. Myth: The Challenge of Judging a KPI as Positive or Negative in Multi-Audience Reports
      • Another common fallacy is the assumption that in a report designed for multiple audiences, the judgment of a Key Performance Indicator (KPI) as positive or negative becomes ambiguous and difficult. However, this misconception arises from the belief that a report can be effective without a well-defined target audience.
      • In reality, the key to addressing this challenge is recognizing that a report should always be tailored to a specific target group. A report designed to cater to different audiences without a well-defined focus is destined to be subpar. By specifying the target audience, the report’s content and presentation can be tailored to meet the unique needs and expectations of that group.
      • And if you ever happen to really don’t know if a deviation has a positive or negative impact, than use a neutral color. IBCS never told us to not use any colors, just use it for a purpose and be consistent in what you are doing to achieve pattern recognition for better decision making.
      • Also, in the unlikely case you actually had to design a report for a multi-audience group than also go for a neutral color, if those different groups also perceive it differently. Like for example if you want to highlight increased “personal costs” within a PnL and your audience is work council + management of the company, than okay use a neutral color. But those examples are definitely the exceptions and not the norm.

    Practical Recommendations:

    1. Don’t pick green and red colors with both having a low saturation
    2. Consult Those Affected: When creating reports or data visualizations, consider seeking input from individuals with color deficiency. Their insights can prove invaluable in selecting appropriate color schemes and ensuring that the content remains accessible and inclusive.
    3. Print your Reports to test in Greyscale: To guarantee that your content remains legible even when viewed in black and white or grayscale, regularly assess your designs in these formats. Or alternatively even better go to a website like the following and test your dashboards there: https://pilestone.com/pages/color-blindness-simulator-1
    4. Use a neutral color if there is really no good or bad, like a blue.
    5. Relative deviation pins are hardest to grasp, always combine them with absolut bars in order to have more ink and bigger bars to give to your audience.

    Conclusion

    In conclusion, it is not as simple as it might seem. While concerns about color deficiency are valid, they should not lead to the blanket avoidance of red and green. Instead, a more nuanced approach that considers the specific context, audience, and accessibility needs should guide our choices. By consulting those affected, testing in greyscale, choosing contrasting shades of red and green, and resorting to neutral colors when necessary, we can strike a balance between effective communication and inclusivity in data visualization practices.

    Concrete tip: Those are the colors I personally use:

    • Microsoft Office Standard Red: 255, 0, 0 or #FF0000
    • Microsoft Office Standard Light Green: 146, 208, 80 or #92D050

    But please keep in mind that the dark green might work as well. Especially for people who are green-weak this is most likely the preferred color. Also even though it might be possible and worth considering to identify a color based on saturation, for people with deficiency high-saturation on high-saturation can be a good option too.

    1. https://www.colour-blindness.com/general/prevalence/ ↩︎

    Power BI – Pimp – Script

    Do you would like to apply data model best practices with a click of a button to your existing Power BI reports? Than the “PBI-Pimp-Script” is the right place for you!

    Edit: This script had a major revamp, published on 31. January 2024 and includes now a lot more: Explicit Measure Creation, Units calc group, Further Calendar Tables, Adding BPA and more.

    This script is designed to streamline and enhance your Power BI modeling experience. Whether you are a Power BI data model expert or just getting started, this script helps you supercharge your modeling efforts.

    Overview and Customization

    At the beginning the PBI-Pimp-Script offers through various prompts a range of enhancements that can be customized to fit your specific needs. Let’s dig into key aspects of this script and how you can tailor it to your requirements.

    Calculation Group for Time Intelligence Measures

    One of the essential features of this script is the ability to add a Calculation Group for “Time Intelligence”. Calculation Groups is a great way to organize or even reduce your measures, making it easier to navigate and manage your Power BI model. With this script, you can define a custom name for your Calculation Group, define the name of the date table and date column to be used. This makes sure your Time Intelligence Calculation Group works even if you are using non-standard names. Do you have a fiscal year and need fiscal year calculation items than the script offers the flexibility to adjust the cutoff day. In contrast you don’t need YTD, than decide against it.

    Date Dimension Table

    A robust Date Dimension Table is crucial for time-based analyses in Power BI. The PBI-Pimp-Script allows you to generate a Date Dimension Table and specify its name and the date column name to match your dataset’s structure. This script follows the approach to push the date dimension as far as possible into the backend. For the script this means this is not a calculated table and instead a power query date dimension. You need to make sure the current time selection 2018 till 2025 fits your needs.

    Empty Measure Table

    The script includes an option to generate an Empty Measure Table. Not sure this is the correct name, but that’s how I call this table. The table basically consists of nothing but two columns which are optional to be filled in. Both columns are by default hidden, that means you won’t immediately find this table. The purpose of this table is to work as container for all of your measures. In case the description of the measures is not sufficient, potentially you could also use this table to document your measures in the columns with editing the table directly in Tabular Editor. In case you need additional measure containers, make sure to rerun the script and stating Yes just for the empty measure table question. If you follow tabular modeling best practices than all of your fact tables contain zero visible columns. Therefore Empty Measure Tables is the way to go.

    Last Refresh Table

    Monitoring data refresh times is essential for data-driven decision-making. The script offers the option to create a Last Refresh Table, which keeps track of the last time your data was refreshed. This information can be invaluable for troubleshooting and ensuring that your data is up-to-date. You can use than this table to add a visualization to your report displaying also the last refresh time to your end-user.

    DAX Formatting

    Consistency is key when it comes to DAX (Data Analysis Expressions) formatting. The script allows you to format all calculation items and if you want also all measures in your model, ensuring that your DAX expressions are easy to read and maintain. This feature enhances collaboration and ensures that your entire team follows the same formatting conventions.

    And much more

    Now that you’re familiar with the powerful features of the PBI-Pimp-Script, let’s walk through the manual process of applying it to your Power BI model.

    Manual to Apply the Script

    1. Connect Tabular Editor (TE2) to PBI Report: Start by connecting with Tabular Editor (TE2) to your local Power BI instance, your Power BI report opened in PBI Desktop
    2. Save and Reopen .bim Locally with TE2: To ensure that you have the necessary access to the Power BI model, save and reopen the .bim file locally with TE2.
    3. Apply “Pimp-Script”: Copy+paste the “Pimp-Script” to enhance your Power BI model. Save it as Macro for reuse. The script will prompt you with various options for customization.
    4. Save PBIP: Save your Power BI project (PBIP) to preserve your changes.
    5. Ingest Model.bim into the PBIP File: Copy and replace the updated “Model.bim” into the respective “ReportName.dataset” folder of your Power BI project.
    6. Reopen PBIP File: Reopen your Power BI project file to see the improvements and enhanced modeling capabilities in action. You might need to apply minor fixes, like the relationship between fact tables and new date dimension.

    I sincerely hope the PBI-Pimp-Script, will help you to apply Power BI data modeling best practices even easier with just a few clicks.

    You need more Power BI data modeling best practices or have ideas to take the script further? –> Ping me via LinkedIn

    Here is the “Power BI-Pimp-Script”


    Video Walkthrough

    Video Walkthrough (German)

    Live Session

    Must-Have Certifications for a Power BI Expert

    Update (March 2026): This article has been updated to include the Fabric Data Engineer Associate (DP-700) certification and to mark the Azure Enterprise Data Analyst Associate (DP-500) as retired.

    In today’s rapidly evolving world of data analytics, certifications have become a valuable tool to showcase one’s expertise and knowledge. As a Power BI expert, you understand the importance of staying ahead in this competitive field. But which certifications are essential for a Power BI professional to possess? In this article, we will explore the must-have certifications that will not only validate your skills but also open doors to new opportunities.

    Microsoft Certifications:

    1. Power BI Data Analyst Associate: This certification is a no-brainer for any Power BI expert. It’s undoubtedly the most relevant and recognized certification in the field, focusing specifically on Power BI.
    2. Azure Enterprise Data Analyst Associate (retired): While not necessarily more challenging than the Power BI certification, this one delves deeper into the world of data analytics and covers a broader spectrum, including administrative tasks.
    3. Fabric Analytics Engineer Associate: This certification is essential for professionals focusing on the Microsoft Fabric analytics environment. It stands out for its emphasis on the end-to-end design and deployment of data analytics solutions at an enterprise scale. The certification requires mastery of Microsoft Fabric’s diverse components, including lakehouses, data warehouses, and dataflows, along with expertise in data transformation and exploratory analytics. It’s an ideal choice for those who want to excel in a role that combines deep technical knowledge with broad analytics capabilities, working alongside roles like data engineers, data scientists, and Power BI data analysts.
    4. Fabric Data Engineer Associate: The newest Fabric certification, introduced with Exam DP-700, targets data engineers working within the Microsoft Fabric ecosystem. It validates expertise in data ingestion, lakehouse and data warehouse implementation, real-time intelligence, and environment management. If you work with pipelines, notebooks, Spark, or KQL in Fabric, this certification proves you can design and optimize end-to-end data engineering solutions. It complements the Fabric Analytics Engineer certification perfectly — one focuses on analytics consumption, the other on data engineering foundations.
    5. Azure Administrator Associate: The Azure Administrator Associate certification is a valuable asset for Power BI professionals. Although it may not seem directly connected to Power BI, it demonstrates your competence in administering Azure services. Given that many organizations use Azure to support their data and analytics infrastructure, this certification can enhance your ability to work within the broader ecosystem that complements Power BI.
    6. Azure Solutions Architect Expert: For those aiming to excel in the world of Power BI and its related technologies, the Azure Solutions Architect Expert certification is a noteworthy achievement. While it may extend beyond the immediate scope of Power BI, this certification focuses on designing comprehensive solutions within the Azure cloud environment. This skill set can be highly advantageous, especially in scenarios where Power BI is integrated with Azure components. It positions you as a versatile expert capable of architecting end-to-end data solutions that encompass both Power BI and Azure, widening your skill repertoire for diverse data analytics projects. Just like the Azure Administrator the Azure Solution Architect Expert is particularly essential if your organization aims to achieve or maintain its status as a Microsoft Solutions Partner for Data & AI.

    Fundamental Microsoft Certifications:

    While there are fundamental certifications available, such as AZ-900 Microsoft Azure Fundamentals and PL-900 Microsoft Power Platform Fundamentals, they may not be as directly related to Power BI. Having the previous Associate and Expert certifications usually renders these fundamental certifications obsolete. Additionally, these fundamentals don’t count toward the Azure Solutions Partner status. The PL-900 might be relevant if you want to showcase basic knowledge in Power Apps or Power Automate which can be used in conjunction with Power BI.

    Renewal Considerations:

    It’s essential to keep in mind that certifications need to be renewed annually. Renewing them may not be as challenging as obtaining them initially, but it’s wise to focus on the most relevant certifications to maintain.

    IBCS Certifications:

    In addition to Microsoft certifications, IBCS (International Business Communication Standards) certifications are invaluable for any report designer, especially in the context of Power BI. IBCS certifications emphasize the importance of creating actionable reports that drive decision-making. More on the importance of IBCS in regards to Power BI here: The Importance of Actionable Reporting in BI & Reporting Best Practice IBCS – Blog about Actionable Reporting – Alexander Korn

    1. IBCS Certified Analyst: This certification covers the basics of IBCS and includes an inspiring one-day introduction to the framework. The remaining two days focus on hands-on training and workshops to ensure you can apply IBCS principles effectively. The IBCS Certified Analyst certification is awarded in perpetuity requiring no renewal.
    2. IBCS Certified Consultant: Once you’ve mastered IBCS and gained practical experience, you can aim for the IBCS Certified Consultant certification. The Analyst certification is a prerequisite for this advanced certification. It involves a comprehensive three-day course, during which you must demonstrate your expertise through presentations and written assessments. For the IBCS Certified Consultant certification, no direct test or course renewal is necessary, but attendance, including the fee, is required for the yearly IBCS Annual conference to maintain certification status.

    In conclusion, while there are numerous certifications available, the key is to choose the ones that align with your career goals and demonstrate your expertise as a Power BI professional. Microsoft certifications offer a solid technical foundation, while IBCS certifications enhance your ability to create actionable and impactful reports with any technology. Remember, certifications are not just badges; they are a testament to your commitment to excellence in the ever-evolving field of Business Intelligence.

    VendorCertificateDescription
    MicrosoftPL-300 Power BI Data Analyst AssociateThe Power BI Data Analyst Associate certification is essential for Power BI professionals. It focuses on Power BI’s core capabilities, making you an expert in creating data-driven insights.
    MicrosoftDP-600 Fabric Analytics Engineer AssociateThe Microsoft DP-600 exam, “Implementing Analytics Solutions Using Microsoft Fabric,” is for individuals skilled in designing and implementing data analytics solutions using Microsoft Fabric, covering lakehouses, data warehouses, and various analytics components
    MicrosoftDP-700 Fabric Data Engineer AssociateThe newest Fabric certification focusing on data engineering — covering data ingestion, lakehouses, data warehouses, real-time intelligence, and environment management using SQL, PySpark, and KQL within Microsoft Fabric.
    MicrosoftDP-500 Azure Enterprise Data Analyst Associate (retired)This certification delves deeper into data analytics and covers administrative tasks within the Azure ecosystem, complementing your Power BI expertise. It’s valuable if you work with Power BI in Azure-centric environments.
    MicrosoftAZ-104 Azure Administrator AssociateWhile not directly related to Power BI, this certification showcases your proficiency in managing Azure services. Many organizations use Azure in conjunction with Power BI, making this certification relevant for broader ecosystem knowledge.
    MicrosoftAZ-305 Azure Solutions Architect ExpertThis certification goes beyond Power BI but is vital for architects looking to design robust and scalable solutions within Azure, often used alongside Power BI. It’s especially crucial for organizations aiming for Data & AI Solutions Partner status.
    MicrosoftAZ-900 Microsoft Azure FundamentalsAn introductory certification to Azure, offering foundational knowledge that can be beneficial when working with Power BI in Azure environments.
    MicrosoftPL-900 Microsoft Power Platform FundamentalsWhile not Power BI-specific, it covers essential concepts that can enhance your overall proficiency in Power Platform applications, including Power BI, Power Apps and Power Automate.
    IBCSIBCS Certified AnalystThis certification emphasizes creating actionable reports, which is crucial for any effective reporting. It provides a deep understanding of International Business Communication Standards (IBCS).
    IBCSIBCS Certified ConsultantBuilding on the Analyst certification, this advanced course equips you with the skills to consult on IBCS implementation, enhancing your ability to deliver impactful reports.

    The Importance of Actionable Reporting in BI & Reporting Best Practice IBCS

    Business Intelligence (BI) is a powerful instrument that can help organizations make better decisions and improve the company’s performance. However, very often I encounter poor BI reports with little to no insight. The assumption in this article is that poor reporting does not stem from an intent to deceive or misinform the report’s target audience. Instead, it is usually due to a lack of understanding about how to create effective and actionable reports.

    Someone may argue that there are numerous ways to interpret and display the same data through visualizations, however I disagree. I believe that there is a single most valuable insight and one best way to visualize that insight. While a company’s objectives and strategies may impact the relative significance of certain key performance indicators or categories, it does not alter the effect that these KPIs or categories have on each other.

    This is why we need actionable reporting best practices that everyone follows. The current most complete best practice for this is IBCS, which stands for International Business Communication Standards. These standards incorporate the majority of previous work done in this area such as ideas from Stephen Few, Edward Tufte or Barbara Minto. Newer publications of standards in the area of information design for charts and tables are already included in the much more elaborate IBCS. E.g Dashboard Design Rules – OKVIZ, “The Data Visualization Society’s Ten Simple Rules for Better Figures” or “The Harvard Business Review’s Guide to Data Storytelling

    IBCS are a set of guidelines for creating effective and actionable reports. It provides a consistent and standardized approach to creating and presenting data, making it easier to understand and use. By following these over 100 rules, you can create reports that are easy to understand and provide clear insights. This will help to ensure that your reports are being used to drive decision-making and improve the company’s performance, rather than just being ignored. IBCS has proven its importance in everyday business already several times but also in a study conducted by blueforte at the Technischen Universität München (TUM) resulting in 61% less mistakes and being 46% faster when consuming reports. Management Summary

    One of the key principles of IBCS is the use of a clear and consistent visual structure. This means that all elements of a report should be arranged in a logical and consistent manner, making it easy to understand and navigate. Additionally, IBCS emphasizes the use of clear and concise language, avoiding technical jargon and confusing terminology.

    Another important aspect of actionable reporting is the use of the right visualizations. Choosing the right visualization for the data you are presenting is crucial for providing clear insights. For example, a line chart is a good choice for showing trends over time, while a bar chart is better for comparing values. IBCS provides guidelines for choosing the right visualization for different types of data.

    To be even more precise the above mentioned rules are categorized into seven areas with the acronym SUCCESS to better memorize them. Putting the SUCCESS areas into a logical order:

    I: Conceptual rules are guidelines that help to effectively communicate a message by using an appropriate narrative structure. They include:

    1. Say: Convey the main message first and foremost.
    2. Structure: Structure the information in a logical and coherent manner.

    II: Perceptual rules are guidelines that help to effectively communicate a message through visual design. They include:

    1. Express: Expressing the message through the use of appropriate visual elements. In very short there are two chart types covering the very biggest majority of the needs: multi-tier bar chart (table) for categories, multi-tier column chart for time. The combination of both should be than a small multiple multi-tier column chart or less often a multi-tier bar chart (table) with multiple previous period comparisons.
    2. Simplify: Simplify the design to minimizing distractions and therefore avoid any unnecessary noise.
    3. Condense: Once there is more space, the report author has the possibility to increase information density with adding additional elements. Condensing therefore means to utilize the limited space as effective as possible.
    4. Check: Once more elements or charts are added, it is crucial to maintain visual integrity. In very short: “things which mean the same should look the same”. Among many other tasks, one is to check the scaling of the newly added visual elements.

    III: Semantic rules are guidelines that help to effectively communicate a message through the use of a uniform notation system. This includes:

    1. Unify: Unify all the above in a consistent manner and apply notation standards, such as through a notation manual or guide.

    The very first area “Say” I would like to highlight specifically. Brent Dykes has published two great articles stating that one should not simply focus on the visualization part and also put a focus on the equally important data (analysis) and narrative (message) part. Elephant In The Room: Data Storytelling Is More Than Just Data Visualization

    But in my opinion the focus on great visualization first is correct. Because like Brent correctly states in his “Insight Funnel” the dashboard/report is the frame for the analysis and consequent message which follows. Why Data Storytelling Requires a Mindset Shift

    Yes you can convey a good insight with a pie chart if your analysis through other means and the message is the bomb. However my argument would be that you are much more efficient and effective with analysis and storytelling and the related message creation process if your storyframing / dashboarding is superb.

    In conclusion, actionable reporting is essential for creating effective BI reports that provide clear and actionable insights. By following the guidelines provided by IBCS, you can ensure that your reports are easy to understand and provide the information that is needed to drive decision-making and improve performance.

    Business intelligence will only reach its full potential if the concept of actionable reporting is applied, and IBCS is perfectly suited to help you do just that.