mauromalacara
Programmer
I have an excel spread sheet file with a lot of text box blank hide on every where of spread sheet, I am finding one by one and removing, Is there any way that let me erase all "text box blank" of once....
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
sub DeleteShapes()
dim sh as shape
for each sh in activesheet.shapes
sh.delete
next
end sub