Can Word Art be based on a formula?

Robyn

Board Regular
Joined
Jan 28, 2007
Messages
71
I have a calendar file which is just for personal use. However, I like it to look nice as I use the current month on my desktop. Sometimes I play with word art in the month heading ("October 2011", etc.), but I do it manually. The start date of the month (10/1/2011) is calculated in Cell D3. When not using word art, the heading references this cell and is custom formatted to show the month spelled out plus the year. If I take this formula out and put word art with the formula =D3, what I get is a calendar showing "=D3" instead of the month and year. Is there a way for word art to use a formula to return the calculated value of a formula? (I am using Excel 2003.) Thanks for any help (or for the information that this is impossible in my version - or any version - of Excel).
 

Excel Facts

How to fill five years of quarters?
Type 1Q-2023 in a cell. Grab the fill handle and drag down or right. After 4Q-2023, Excel will jump to 1Q-2024. Dash can be any character.
You could do something like this in the Worksheet Calculate Event:

Code:
Private Sub Worksheet_Calculate()
    ActiveSheet.Shapes("Rectangle 1").TextFrame2.TextRange.Characters.Text = Format(Range("A1"), "mmmm yyyy")
End Sub

Change Rectangle 1 to whatever the name of the WordArt you want to change is.
 
Upvote 0
Ah, my old bugaboo. Someday, when I get around to learning VBA...

I will keep your suggestion inside my calendar file, awaiting that day.

Thank you!

Robyn
 
Upvote 0

Forum statistics

Threads
1,224,557
Messages
6,179,508
Members
452,918
Latest member
Davion615

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top