View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Cinque Terra Cinque Terra is offline
external usenet poster
 
Posts: 11
Default 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!