1
vote
Excel - conditional formatting in Shapes?
I'm not sure there is. In 2007, like older versions of Excel, FormatConditions can only be applied to Ranges, not Shapes.
However, if I'm understanding your situation correctly in that you …
0
votes
How do you get Excel to refresh data on sheet from within VBA?
You might also try
Application.CalculateFull
or
Application.CalculateFullRebuild
if you don't mind rebuilding all open workbooks …
1
vote
Excel charts - setting series end dynamically
You can set the range for a chart dynamically in Excel. You can use something like the following VBA code to do it:
Private Sub Worksheet_Change(ByVal Target as Range)
Select Ca …
2
votes
Excel Macro - how to set X axis?
You should be able to set the XValues property in the same way you did in Lance's answer for your oth …
3
votes
Strings containing double quotes in Excel
Alternatively, you can use the CHAR function:
= "Maurice " & CHAR(34) & "Rocket" & CHAR(34) & " Richard"
…
