VBA Adjust All Shape In Sheet To Same Position In Cell

Lewzerrrr

Active Member
Joined
Jan 18, 2017
Messages
256
Hi,

Is there a way to adjust all shapes in a worksheet to the exact same position?

So a manual way would be if I have 10 shapes in sheet1 in different cells between A1:B20, I would manually click each one and alt drag it to the top left of the cell it resides in. How Can I produce this through a macro and add an incrementtop and incrementleft?

Thanks,
 

Excel Facts

Copy PDF to Excel
Select data in PDF. Paste to Microsoft Word. Copy from Word and paste to Excel.
Sorry not near a computer to test this but would it be something (just going off a whim) like:

for each sh in shape

TL = sh.topleftcell.address

With sh
.cut
.paste = TL
.top = TL
.width = 80
.height = 100
.incrementtop = 8
.incremeentleft = 20
end with

next sh
 
Upvote 0

Forum statistics

Threads
1,215,366
Messages
6,124,516
Members
449,168
Latest member
CheerfulWalker

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