+ Reply to Thread
Results 1 to 2 of 2

Limit delete option in VBA

Hybrid View

  1. #1
    Registered User
    Join Date
    04-12-2015
    Location
    Den Haag, Nederland
    MS-Off Ver
    Win7
    Posts
    3

    Limit delete option in VBA

    Hello Profs,

    Who knows how to limit the code to delete only .jpg files in a XLS?

    Sub DeleteAllPics()
    With Worksheets("sheet1")
    .Unprotect ""
    
    Dim pic As Object
    For Each pic In ActiveSheet.Pictures
    pic.Delete
    Next pic
      .Protect ""
    End With
    End Sub
    Last edited by Leith Ross; 05-03-2015 at 04:41 PM. Reason: Added Code Tags

  2. #2
    Forum Moderator Leith Ross's Avatar
    Join Date
    01-15-2005
    Location
    San Francisco, Ca
    MS-Off Ver
    2000, 2003, & 2010
    Posts
    23,259

    Re: Limit delete option in VBA

    Hello Arjen79,

    The Excel Pictures collection object does not have a Type property. This is because all picture files on a worksheet are converted into the same format regardless if it is a bmp, jpg, or png.

    You may be able to delete specific pictures by name, provided the picture type was included in the picture's name.
    Sincerely,
    Leith Ross

    Remember To Do the Following....

    1. Use code tags. Place [CODE] before the first line of code and [/CODE] after the last line of code.
    2. Thank those who have helped you by clicking the Star below the post.
    3. Please mark your post [SOLVED] if it has been answered satisfactorily.


    Old Scottish Proverb...
    Luathaid gu deanamh maille! (Rushing causes delays!)

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. [SOLVED] Format axis upper and lower limit option missing
    By nosense in forum Excel General
    Replies: 13
    Last Post: 02-24-2015, 01:25 PM
  2. Make entire column limit character size and delete extras
    By OldLadyStillLearning in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 02-02-2015, 02:42 PM
  3. Replies: 1
    Last Post: 11-30-2013, 06:37 AM
  4. [SOLVED] Delete unused rows or limit worksheet to only filled in cells?
    By youngtusk87 in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 08-30-2012, 01:03 AM
  5. Replies: 1
    Last Post: 01-13-2011, 02:29 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1