Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowJuly 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more
I have added Pivot steps in my table and this made my months column (Jan to Jun) appear. The next step am the below query to replace column values using
Table.ReplaceValue(#"Pivoted Column",null,0,Replacer.ReplaceValue,{"JAN", "FEB", "MAR", "APR", "MAY", "JUN", "JUL", "AUG", "SEP", "OCT", "NOV", "DEC"})
The problem here is since I dont have no data from Jul to Dec, the query fails to execute. How do I dynamically make the list of month's appear in the above formula ?
Solved! Go to Solution.
Hi @smathew8,
change your pivot function that it pivots not only distict values in your table but more - see screenshot.
Sample data:
Your pivot looks similar to mine, right? The List.Distinct ... gives you distict values of the column Month. But you want more.
Therefore you define all the 12 months by yourself. There will be nulls for all months where no values exist.
Hi @smathew8,
change your pivot function that it pivots not only distict values in your table but more - see screenshot.
Sample data:
Your pivot looks similar to mine, right? The List.Distinct ... gives you distict values of the column Month. But you want more.
Therefore you define all the 12 months by yourself. There will be nulls for all months where no values exist.
Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.
Join Fabric Data Days 2026: 60 days of free live/on-demand sessions, challenges, study groups, and certification opportunities.