Running total of sales prior to now.

shophoney

Active Member
Joined
Jun 16, 2014
Messages
281
Hi, I have sales by the hour. Each hour I have a cell with the total sales.

I'm looking for the best way to have running total, but if the time is after now it will display 0.

1pm $200 $200
2pm $150 $350
3pm $ 75 $425

But if the time is after now then dont give the hourly totals.

So something with =now(), <1pm?

Thanks
 

Excel Facts

Back into an answer in Excel
Use Data, What-If Analysis, Goal Seek to find the correct input cell value to reach a desired result
Hey shophoney,

Assuming column A contains the time 1pm,2pm etc.. Make sure these values are configured are numbers and not strings

=IF(A1>HOUR(NOW()),SUM(200$,etc..),"")

Cheers,

Hurkk
 
Last edited:
Upvote 0
Hi, thanks for the response.

My issue might be with the TIME formula being a cubemember. See below, I only need the time part not the date.

=IFERROR(CUBEMEMBER("ThisWorkbookDataModel","[TIME].[TIME].&[1899-12-30T23:00:00]"),"")
 
Upvote 0

Forum statistics

Threads
1,214,388
Messages
6,119,226
Members
448,878
Latest member
Da9l87

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top