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

Data Days is here! Join us now for 60+ days of learning, challenges, and connection. Learn more

Reply
hellohelpme
New Member

Create a table that collects the count every day (data refreshed daily)

Hello! I have a data table that logs food in a store. All food types has an expiry date, and the original table include both food that is expired and food that is still good. The dataset is refreshed every day, which means that new items of food can come in and food can expire. 

 

I want to create a table that collects the count of food that is not expired every day from today. It does not have to go back in time, but if I could start collecting the counts today (or one of the following days), I would soon get a good overview of how the stock of non-expired food develops over time. 

 

I have tried to create a calendar-table and add the following column: 

foodstock=if(table[Date]=TODAY(), count(foodsupply[foodID]))

 

This collects the count for todays date, but the next day it "overwrites" the day before to blank: 

 

Example: 

On March 1st it gives me this: 

Datefoodstock
01.03.20239083
02.03.2023 
03.03.2023 
04.03.2023 

 

On March 2nd it gives me this: 

Datefoodstock
01.03.2023 
02.03.202313045
03.03.2023 
04.03.2023 
 
I wish it could give me this: 
Datefoodstock
01.03.20239083
02.03.202313045
03.03.2023 
04.03.2023 

 

Any ideas on how I can solve this? 

1 REPLY 1
Anonymous
Not applicable

Hi @hellohelpme ,

 

Please try this.

foodstock = IF('table'[Date]<=TODAY(),CALCULATE(COUNT('foodsupply'[foodID]),RELATEDTABLE('foodsupply')))

 

Best Regards,
Gao

Community Support Team

 

If there is any post helps, then please consider Accept it as the solution  to help the other members find it more quickly. If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!

How to get your questions answered quickly --  How to provide sample data in the Power BI Forum

Helpful resources

Announcements
Fabric Data Days is here Carousel

Fabric Data Days 2026

Don't miss out on Data Days, June 15 through August 7. Learn Fabric, Power BI, SQL, AI and more.

May Power BI Update Carousel

Power BI Monthly Update - May 2026

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

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.