Category Archives: VBA

Drawing in Excel 7 – Creating drawings from coordinates

Previous Post, Drawing in Excel 6 The file PlotXYcontains routines to plot scale drawings in Excel from a list of XY coordinates of node points, node points for each shape, and formatting details for each shape type.  The plot is scaled … Continue reading

Posted in Drawing, Excel, VBA | Tagged , , , | 25 Comments

A Question of Spelling

The Excel VBA routine below will check the spelling of the text in the current selected cell, and return either TRUE or FALSE in the adjacent cell to the right: Sub SpellChecksub() Dim Checkword As String, Result As Boolean Checkword … Continue reading

Posted in Excel, UDFs, VBA | Tagged , , | 15 Comments

ImageMagick – Update and add IrfanView link

The picture indexing spreadsheet presented in the previous post has been updated: Comments can now be added adjacent to the file names, and these will be copied along with the Exif data The routine to copy the exif data to … Continue reading

Posted in Drawing, Excel, VBA | Tagged , , , , , | 4 Comments

ImageMagick and Excel

Back from my holidays, with a hard disk full of holiday snaps, and looking for a program to extract the image data saved on the camera, and add comments.  Not liking the offerings provided with the cameras, or any of … Continue reading

Posted in Drawing, Excel, VBA | Tagged , , , | 9 Comments

Drawing in Excel 6 – getting shape properties

Previous post One of the less than useful new “features” of Excel 2007 is that its macro recorder no longer records operations on shapes, which removes the easiest way to discover the exact names of shape properties, and how to manipulate … Continue reading

Posted in Drawing, Excel, UDFs, VBA | Tagged , , , , | 5 Comments