I'm experiencing an issue as to where I've got a SelectionChange macro set up, I can't change cells while keeping a range in CutCopyMode (I assumed this was because that code enters formula in cells, but even when it doesn't, it still cancels CutCopy). Can anyone think of a way to solve this?
I was trying:
I have no idea if this idea is possible all I know is my test didn't work, could someone give me advice on this?
Best regards,
~Will S
I was trying:
Code:
IF Application.CutCopyMode = True then
Dim CopyRange as Range
CopyRange = ActiveCell 'Could I maybe use something like Selection.Range?
'Rest of my Code
CopyRange.Copy
End if
I have no idea if this idea is possible all I know is my test didn't work, could someone give me advice on this?
Best regards,
~Will S