BeforeAssignmentAction
My VBA is running on a PerformancePoint Excel Add-In Form. According to the
PPS Help, I may create the subroutines that are based on the
BeforeAssignmentAction event. I cannot seem to get this action to work.
In ThisWorkbook:
Private Sub BeforeAssignmentAction()
Range("D11:D33").Copy
Range("L11:L33").Select
ActiveSheet.Paste
End Sub
Thanks in advance!
|