K
KeriM
I'm trying to use Excel VBA to autocreate a chart title based on a cel
value. This is what I've got so far:
Code
-------------------
.ChartTitle.Text = "Progress (as of " & "='OtherSheet'!R6C7" & ")"
-------------------
It's supposed to say (as an example): Progress (as of August 28,2012)
The "August 28, 2012" is written in a cell in another sheet. I've trie
double quotes, I've tried putting the = before the text and in th
formula. The above code results everything written out as text
including the formula. It is just listing the formula as text, and it'
not actually getting the value of that cell. Does anyone know th
correct syntax to get this to work
value. This is what I've got so far:
Code
-------------------
.ChartTitle.Text = "Progress (as of " & "='OtherSheet'!R6C7" & ")"
-------------------
It's supposed to say (as an example): Progress (as of August 28,2012)
The "August 28, 2012" is written in a cell in another sheet. I've trie
double quotes, I've tried putting the = before the text and in th
formula. The above code results everything written out as text
including the formula. It is just listing the formula as text, and it'
not actually getting the value of that cell. Does anyone know th
correct syntax to get this to work