Issue with Text in Shapes

Robnrolla

New Member
Joined
Jul 16, 2017
Messages
13
Hello,

For some reason whenever I open up my workbook, the text in my shapes has automatically moved to the back so that it appears like there is no text in the shapes. So every time I re-open the workbook, the first thing I have to do is click on a shape and send the text to the front. This then moves all the text in each shape on the worksheet to the front.

There must surely be a way to stop this happening? please can someone help me fix this issue.

Thanks,

Rob
 

Excel Facts

Copy formula down without changing references
If you have =SUM(F2:F49) in F50; type Alt+' in F51 to copy =SUM(F2:F49) to F51, leaving the formula in edit mode. Change SUM to COUNT.
Hello Rob



Is the text an independent shape per se? Can you provide more detail on the objects you are working with?
 
Upvote 0
Yes apologies, it's a very simple flow chart. I am using a basic shape and using connector arrows to link each shape. The text in the shapes is dynamic as it links to a cell with text in another sheet. The text on the other sheet is using a very simple custom function written in VBA to replicate the name of the worksheet. Each shape also has a hyperlink to the worksheet that it represents.

I hope that makes sense? Thank you for your assistance. :)
 
Upvote 0
My idea is to use VBA and force the shape to update. See if the code below does the trick.

VBA Code:
' sheet module

Private Sub Worksheet_Activate()
Me.Shapes("Diamond 22").OLEFormat.Object.Formula = "=plan1!h41"
End Sub
 
Upvote 0

Forum statistics

Threads
1,215,133
Messages
6,123,234
Members
449,092
Latest member
SCleaveland

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