Nov 12, 2002 #1 bigracefan Programmer Apr 2, 2002 304 US I need to create an excel sheet with a simple box somewhere on the sheet(through code of course). Any ideas? Pete
I need to create an excel sheet with a simple box somewhere on the sheet(through code of course). Any ideas? Pete
Nov 12, 2002 #2 kylua Technical User Sep 30, 2002 199 GB ActiveSheet.Shapes.AddShape(msoShapeRectangle, 265.5, 153#, 240.75, 121.5).Select Is a recording of adding a rectangle to the sheet. Any other alterations you want, just use the macro recorder to see the syntax. Upvote 0 Downvote
ActiveSheet.Shapes.AddShape(msoShapeRectangle, 265.5, 153#, 240.75, 121.5).Select Is a recording of adding a rectangle to the sheet. Any other alterations you want, just use the macro recorder to see the syntax.