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

Next 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

Reply
frost789
Helper II
Helper II

What's the best practice when one needs to add columns to the data table behind a visualization?

In my old visualization (see picture below) I have various varibles (eg withdraw numbers, fail numbers) for the past years (Fall 2022, Fall 2023, Fall 2024). However, for Fall 2025, I need to add a few new variables (eg major code, degree code) for the Fall 2025's visualization. I will continue to use the visualization layout below. What's the best practice under this scenario? As I don't have "major code", "degree code" variables for Fall 2022, Fall 2023, Fall 2024, but will have those new variables from Fall 2025 and on. I plan to use major code, degree code in my Fall 2025 visualizations and future visulizations, but will probably have N/A for prior years (Fall 2022, Fall 2023, Fall 2024). 

Screenshot 2026-01-26 142923.png

 

1 ACCEPTED SOLUTION
Zanqueta
Super User
Super User

Hi , @frost789
The recommended solution is to:

  • Add the new fields to your existing fact table.
  • Allow earlier years to contain nulls for those fields.
  • Preserve the same data structure across historical and future periods.
  • Manage the visibility of new attributes in visuals where appropriate.
This approach ensures a clean, maintainable, and scalable data model.
 

 

If this response was helpful in any way, I’d gladly accept a kudo.
Please mark it as the correct solution. It helps other community members find their way faster.
Connect with me on LinkedIn

View solution in original post

8 REPLIES 8
v-ssriganesh
Community Support
Community Support

Hi @frost789,

Thank you for posting your query in the Microsoft Fabric Community Forum, and thanks to @MasonMA@Zanqueta@krishnakanth240 & @Ashish_Mathur for sharing valuable insights.

 

Could you please confirm if your query has been resolved by the provided solutions? This would be helpful for other members who may encounter similar issues.

 

Thank you for being part of the Microsoft Fabric Community.

Zanqueta
Super User
Super User

Hi , @frost789
The recommended solution is to:

  • Add the new fields to your existing fact table.
  • Allow earlier years to contain nulls for those fields.
  • Preserve the same data structure across historical and future periods.
  • Manage the visibility of new attributes in visuals where appropriate.
This approach ensures a clean, maintainable, and scalable data model.
 

 

If this response was helpful in any way, I’d gladly accept a kudo.
Please mark it as the correct solution. It helps other community members find their way faster.
Connect with me on LinkedIn

krishnakanth240
Memorable Member
Memorable Member

Hi @frost789 

Your core table (facts like withdrawals, fails, enrollments) should remain one table across all years. For the new attributes (Major Code, Degree Code), you can add the columns to the fact table, populate them only from Fall 2025 onward, and leave them as NULL / BLANK for earlier years

MasonMA
Super User
Super User

Hi, 

 

If your new variables are descriptive attributes, i'd suggest modelling them as dimension tables and relate them to the fact table.

 

For Fall 2022–2024, map rows to a single “Unknown” member; from Fall 2025 onward, populate the real values.

This keeps the model scalable, avoids sparse fact tables, and allows the same visuals to continue working without redesign.

 

If introducing dimensions is not feasible, adding nullable columns to the existing fact table like user above mentioned is still acceptable, but just avoid hard-coding text like 'N/A' and rely on BLANK() instead.

Thank you for your answer. Can you provide an example as to how I should rely on BLANK() instead of "N/A"? Other answers seem to suggest it's ok to use "N/A" or NULL for those years missing new variables.

In Power BI, BLANK() / NULL means “unknown or not applicable”, whereas "N/A" is just a real text value.

Because "N/A" is a value, Power BI treats it as legitimate data, not missing data.

Ashish_Mathur
Super User
Super User

Hi,

Just add those columns in your table.  That should not break anything.  For Spring 2025, the visuals for those 2 columns will just appear blank.


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/

I don't follow. The dashboard doesn't have Spring data. Only Fall data.

Helpful resources

Announcements
New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

March Power BI Update Carousel

Power BI Community Update - March 2026

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