Automatic Report Generation in MS-Excel

Home More Videos



A MS-Excel  user's query:
I'm working as a personal assistant to the General Manager in a large company. I fix appointments with decision makers in different companies to make a presentation of our products and services. Every evening I have to produce a quick report in MS-Excel from my data that is attached. Is it possible to copy specific data and make a quick report by selecting let's say just the header the 'Name of the decision maker' and the data below it in column A? Thanks for your help.
How to generate quick reports in MS-Excel:
We can run a VBA code or macro automatically on a worksheet when a specific data range defined by a parameter called 'Target' is selected in the 'Worksheet_SelectionChange Event'.
Watch the video below to learn how to automatically generate reports:


Private Sub Worksheet_SelectionChange(ByVal Target As Range)
If Target.Column = 1 Then
Target.Offset(0, 0).Copy Destination:=Target.Offset(0, 10)
Target.Offset(0, 5).Copy Destination:=Target.Offset(0, 11)
Target.Offset(0, 6).Copy Destination:=Target.Offset(0, 12)
End If
End Sub