Can u link word art to cell value

Alpacino

Well-known Member
Joined
Mar 16, 2011
Messages
511
I have a wordArt on a sheet with "Week:" in it I would like a number in the word art to be linked to a cell that changes number value to the display changes whenever the cell changes value e.g cell D5 is "3" then wordart says "Week 3"

Is this possible to do???
 

Excel Facts

What is the fastest way to copy a formula?
If A2:A50000 contain data. Enter a formula in B2. Select B2. Double-click the Fill Handle and Excel will shoot the formula down to B50000.
Using Excel 2007, Insert Tab, WordArt, then when you see a box that says "Your Text Here", ignore it. Click into the formula bar just above your worksheet and type, for example, "=G4" without the quotation marks.
Then the WordArt will be linked to cell G4, and will reflect its contents dynamically.
Hope this can help.
Larry.
 
Upvote 0
Try:-
Code:
ActiveSheet.Shapes("WordArt 2").TextEffect.Text = "Week " & [D5]
or
Code:
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Address(0, 0) = "D5" Then
ActiveSheet.Shapes("WordArt 2").TextEffect.Text = "Week " & Target
End If
End Sub
Mick
 
Upvote 0
Two steps solution

A1: 5
A2: Custom Format: "Week "##
link A2 to A1: =A2=A1

use WordArt and then in" Insert function" link this art to A2.
You will get "Week 5".
Change value of A1 - that will reflect the number in Word Art.
 
Upvote 0

Forum statistics

Threads
1,224,518
Messages
6,179,259
Members
452,901
Latest member
LisaGo

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