![]() |
is there a better alternative to Copy/Paste?
I have a macro which iteratively changes input cells to a formula, and then
Copys and Pastes the input cell value and associated formula result cell value to a list. I use a For Cnt Next Cnt loop to accomplish this. The list is then used as source data for a graph. As a novice VBA user, my question is whether there is a more efficient way to transfer the cell values to the list than copying and pasting? Any advice (with e.g. code) greatly appreciated. |
is there a better alternative to Copy/Paste?
try range("a2:a55").value=range("b2:b55").value -- Don Guillett SalesAid Software "MichaelC" wrote in message ... I have a macro which iteratively changes input cells to a formula, and then Copys and Pastes the input cell value and associated formula result cell value to a list. I use a For Cnt Next Cnt loop to accomplish this. The list is then used as source data for a graph. As a novice VBA user, my question is whether there is a more efficient way to transfer the cell values to the list than copying and pasting? Any advice (with e.g. code) greatly appreciated. |
is there a better alternative to Copy/Paste?
Thank you, Don, that is most helpful.
"Don Guillett" wrote: try range("a2:a55").value=range("b2:b55").value -- Don Guillett SalesAid Software "MichaelC" wrote in message ... I have a macro which iteratively changes input cells to a formula, and then Copys and Pastes the input cell value and associated formula result cell value to a list. I use a For Cnt Next Cnt loop to accomplish this. The list is then used as source data for a graph. As a novice VBA user, my question is whether there is a more efficient way to transfer the cell values to the list than copying and pasting? Any advice (with e.g. code) greatly appreciated. |
All times are GMT +1. The time now is 10:28 AM. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com