Insert shape on worksheet to refresh page

Ozhatch

Board Regular
Joined
Oct 31, 2011
Messages
65
Office Version
  1. 2007
Platform
  1. Windows
I know that I can refresh a worksheet by clicking on the refresh icon in the ribbon, or by pressing F9. What I'd like to do is to create a shape which is easily seen—my eyes ain't as young as they used to be—and activated with cursor and mouse click. Creating the shape is easy; please would someone show me how to write the instruction that goes with it?

Thanks in anticipation.
 

Excel Facts

Shade all formula cells
To shade all formula cells: Home, Find & Select, Formulas to select all formulas. Then apply a light fill color.
You can add a shape to the worksheet using Insert>Shapes.
Right-click on the shape and select "Assign Macro..."
Accept the proposed macro name (or change it) and select "New"
In the macro editor add the following code (assuming you created a rectangle):

Code:
Sub Rectangle1_Click()
    ActiveSheet.Calculate  
End Sub

You only have to add the middle line. Excel adds the Sub ... End Sub sections.

Clicking the rectangle on the sheet will now calculate the sheet.

Hope this helps.
 
Upvote 0
Thank you so much! That's exactly what I needed. :beerchug:
 
Upvote 0

Forum statistics

Threads
1,223,888
Messages
6,175,217
Members
452,619
Latest member
Shiv1198

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