Forum Discussion
Tony2021
Sep 03, 2022Iron Contributor
Modern Chart - adding Dynamic Chart Subtitle?
Hello Experts, I have done some research on this topic and I have not been able to find a way to add a dynamic chart title. I have to manually copy and paste my text to the chart's subtitle fi...
- Sep 03, 2022Yes - use DLookup
Me.Chart0.ChartSubtitle = DLookup("FieldName", "Table/QueryName", "FilterCriteria")
e.g.
Me.Chart0.ChartSubtitle = DLookup("MyDateTime2", "t_Graphdata", "MyDataID = 4456")
Tony2021
Sep 04, 2022Iron Contributor
Hi IslaDogs,
I have a quick follow up when you have a sec.
Do you happen to know how to break a long ChartSubtitle line into 2 lines?
I thought by adding a continuation character would break it into 2 lines but that didnt seem to work as its still in 1 long line.
Wondering if you happen to know of a workaround?