Hello,
I am exporting data from a MS Access database to an existing spreadsheet. This data is used as the SourceData of a chart.
I create a named range on the 'Open Workbook' event as follows:
I would like to use this dynamic range in my chart so that it will refresh every time (without being changed manually). I tried typing the name into the Data Range field in the chart and it only changes it temporarily.
Does anyone know how to make named range reference for the chart SourceData stick? I saw an older thread and in it SkipVought had referenced his post in VB5 & 6 forum, but I could not find it.
thanks,
Ben
I am exporting data from a MS Access database to an existing spreadsheet. This data is used as the SourceData of a chart.
I create a named range on the 'Open Workbook' event as follows:
Code:
Private Sub Workbook_Open()
ThisWorkbook.Names.Add Name:="dynamRange1", _
RefersTo:= "=OFFSET(ExportData!$A$2,0,0, COUNTA _
(ExportData!$D:$D)-1,4)", Visible:=True
End Sub
I would like to use this dynamic range in my chart so that it will refresh every time (without being changed manually). I tried typing the name into the Data Range field in the chart and it only changes it temporarily.
Does anyone know how to make named range reference for the chart SourceData stick? I saw an older thread and in it SkipVought had referenced his post in VB5 & 6 forum, but I could not find it.
thanks,
Ben