![]() |
Sub to transfer values and log the transfer
Looking for help with a sub to do this ..
Transfer the values: In D15 to D11 In G19:G39 to E19:E39 then log the time/date of the transfers in cell E11 in this format: "Last Transferred on 9:30 AM 24 Aug 2009" D15, G19:G39 contain formulas whose returns are to be "copied/pasted as values" into D11 & E19:E39 Thanks |
Sub to transfer values and log the transfer
Try the below which works on the active sheet
Sub Macro() Range("D11").Value = Range("D15").Value Range("E19:E39").Value = Range("G19:G39").Value Range("E11") = "Last Transferred on " & Format(Now, "hh:mm AM/PM dd mmm yyyy") End Sub If this post helps click Yes --------------- Jacob Skaria "Max" wrote: Looking for help with a sub to do this .. Transfer the values: In D15 to D11 In G19:G39 to E19:E39 then log the time/date of the transfers in cell E11 in this format: "Last Transferred on 9:30 AM 24 Aug 2009" D15, G19:G39 contain formulas whose returns are to be "copied/pasted as values" into D11 & E19:E39 Thanks |
Sub to transfer values and log the transfer
Many thanks, Jacob.
That does it well. |
All times are GMT +1. The time now is 09:58 PM. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com