Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now

Reply
smathew8
Frequent Visitor

Dynamically computing months column

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 ?

1 ACCEPTED SOLUTION
Nolock
Resident Rockstar
Resident Rockstar

Hi @smathew8,

change your pivot function that it pivots not only distict values in your table but more - see screenshot.

Sample data:

Capture.PNG

Your pivot looks similar to mine, right? The List.Distinct ... gives you distict values of the column Month. But you want more.

Capture2.PNG

Therefore you define all the 12 months by yourself. There will be nulls for all months where no values exist.

Capture3.PNG

View solution in original post

1 REPLY 1
Nolock
Resident Rockstar
Resident Rockstar

Hi @smathew8,

change your pivot function that it pivots not only distict values in your table but more - see screenshot.

Sample data:

Capture.PNG

Your pivot looks similar to mine, right? The List.Distinct ... gives you distict values of the column Month. But you want more.

Capture2.PNG

Therefore you define all the 12 months by yourself. There will be nulls for all months where no values exist.

Capture3.PNG

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

February Power BI Update Carousel

Power BI Monthly Update - February 2026

Check out the February 2026 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors