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
Anonymous
Not applicable

Adding Rows When there isn't a Ship Date

Hello, I have am editing an excel sheet in Power Query that has columns called ship date, item sold, and quantity. I'm trying to find the average of sales for the month but not every day has a shipment. How should I insert a row containing a 0 and the date with no shipments? Thanks.

1 ACCEPTED SOLUTION
BA_Pete
Super User
Super User

Hi @Anonymous ,

 

Don't try to force rows into your fact table.

Create a proper calendar table that you can relate to your fact table then use the calendar[date] column to get the number of days in the period as your denominator.

 

Example:

You want to look at all shipments in March 2022.

Your calendar table has [date] and [monthYear] columns.

Your fact table has [shipDate] and [shipValue] (sales) columns.

Relate calendar[date] to fact[shipDate], ONE to MANY.

Create the following measures:

_sales = SUM(fact[shipValue])

_days = COUNTROWS(calendar)

_averageSalesPerDay = DIVIDE(_sales, _days, 0)

 

Put [_averageSalesPerDay] and calendar[monthYear] into a visual and this will calculate the average sales for every day in that month.

 

Pete



Now accepting Kudos! If my post helped you, why not give it a thumbs-up?

Proud to be a Datanaut!




View solution in original post

2 REPLIES 2
Anonymous
Not applicable

Thank you!

BA_Pete
Super User
Super User

Hi @Anonymous ,

 

Don't try to force rows into your fact table.

Create a proper calendar table that you can relate to your fact table then use the calendar[date] column to get the number of days in the period as your denominator.

 

Example:

You want to look at all shipments in March 2022.

Your calendar table has [date] and [monthYear] columns.

Your fact table has [shipDate] and [shipValue] (sales) columns.

Relate calendar[date] to fact[shipDate], ONE to MANY.

Create the following measures:

_sales = SUM(fact[shipValue])

_days = COUNTROWS(calendar)

_averageSalesPerDay = DIVIDE(_sales, _days, 0)

 

Put [_averageSalesPerDay] and calendar[monthYear] into a visual and this will calculate the average sales for every day in that month.

 

Pete



Now accepting Kudos! If my post helped you, why not give it a thumbs-up?

Proud to be a Datanaut!




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