When I create a graph after using range.copy and range.paste it leaves the paste range selected, and then when I create a graph a few lines later, it uses the selection as the f
In Excel 2007, a combination using select and CutCopyMode property, it is possible to reset all the selections. It worked for my use case.
Application.CutCopyMode = xlCopy ActiveSheet.Range("A" & lngRow).Select
Regards Madhur