capture data on certain dates

Peterw_2506

Board Regular
Joined
Jan 28, 2011
Messages
78
Hi everybody,

I have a function that works but doesn't work, can anybody help me please.

I have a table that on certain dates I need to copy information into certain cells from other worksheets in my workbook. This formula =IF(B24=TODAY(),'Summary Sheet'!P33,"") works but when the date passes that is in cell B24 the information copied in is not retained. Does anybody know what I need to do so the data that is referenced in is retained. I'm trying to stay away from VB as I have zero experience and knowledge about it (something I'm going to have to address soon I think).

Be grateful for all help. Thank you in advance.

regards, Peter
 

Excel Facts

What is the last column in Excel?
Excel columns run from A to Z, AA to AZ, AAA to XFD. The last column is XFD.
Maybe use something like:

=IF(B24<=TODAY(),'Summary Sheet'!P33,"")

So long as B24 doesn't change this will always return P33 once the B24 date has passed
 
Upvote 0
Thank you for your thoughts, cell P33 is constantly evolving so what I need to do is capture the data because in one weeks time (the next capture date) it will more than certainly have been modified
 
Upvote 0
I think you need to think about a programatic solution then - you need to change your formula driven answer into something that will not change. it need not be too complicated - just record a simple copy and paste special macro. You can use OnTime to run your macro but you will need a way to determine when it should run - and, more importantly, when it should not but if you simply copy and paste the value back over the original formula it wont matter if the procedure kicks off again as it will simply copy and paste fixed value
 
Upvote 0

Forum statistics

Threads
1,224,586
Messages
6,179,729
Members
452,939
Latest member
WCrawford

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