When file is opened the 1st user form says "Welcome" - giving user the option to enter their new monthly metrics (numbers/results) by clicking on "ENTER METRICS"... or click on the "VIEW CHARTS" button to go look at the 4 square of charts.
The xls. file has 1 tab that holds the database of user input for the year...
The tab that holds the 4 charts is in: "RE_CHARTS" ...
The chart names are: CYCLE TIME, EFFICIENCY, TIMELINESS & QUALITY
They are arranged in a 4-square on the .xls tab
I'd like this to happen:
When the user clicks on the CHARTS BUTTON, he's taken to the charts userform and a snapshot of what those charts look like will be sitting there to view. (sent from the charts TAB called: "RG_CHARTS" to the USERFORM called: "frmRGCHARTS"
Does anyone know VBA code to accomplish this?
I'm new to VBA and am trying to piece all of this together...
Thank you VERY much! Chris
Here's my WELCOME form code:
The xls. file has 1 tab that holds the database of user input for the year...
The tab that holds the 4 charts is in: "RE_CHARTS" ...
The chart names are: CYCLE TIME, EFFICIENCY, TIMELINESS & QUALITY
They are arranged in a 4-square on the .xls tab
I'd like this to happen:
When the user clicks on the CHARTS BUTTON, he's taken to the charts userform and a snapshot of what those charts look like will be sitting there to view. (sent from the charts TAB called: "RG_CHARTS" to the USERFORM called: "frmRGCHARTS"
Does anyone know VBA code to accomplish this?
I'm new to VBA and am trying to piece all of this together...
Thank you VERY much! Chris
Here's my WELCOME form code:
Code:
Private Sub cmdCharts_Click()
frmRGWelcome.Hide
frmRGCharts.Show
End Sub
Private Sub cmdMetric_Click()
frmRGWelcome.Hide
frmRGUserEntry.Show
End Sub