Don't miss your chance to take the Fabric Data Engineer (DP-700) exam on us!
Learn moreNext up in the FabCon + SQLCon recap series: The roadmap for Microsoft SQL and Maximizing Developer experiences in Fabric. All sessions are available on-demand after the live show. Register now
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.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 6 | |
| 3 | |
| 3 | |
| 3 | |
| 2 |