+ Reply to Thread
Results 1 to 4 of 4

Checking a cell for an image there and if present, deleting it

  1. #1
    Registered User
    Join Date
    09-11-2013
    Location
    that other place
    MS-Off Ver
    Excel 2007
    Posts
    2

    Checking a cell for an image there and if present, deleting it

    I am using Excel 2007.

    Hello. I've come here after several days of googling and searching these forums, ozgrid and stackoverflow. I've found a few examples of something close to what I'm looking to do, but it's not quite there or I'm just not implementing it correctly. I'm extremely new to using macros in Excel and have been learning all I can the past few weeks, but I ask any explanations please be given to me like I'm 8

    What I'm trying to accomplish is thus: I have a button that depending on a few drop down selections, will copy an image from another worksheet and paste it into the "Main" worksheet at B15. Before that occurs, I'd like the button to first check that cell (B15) for an existing image and delete it without removing any other images on the worksheet.

    If anyone could guide me on how to do this (remembering I'm still very new to this) I would greatly appreciate it.

  2. #2
    Forum Expert tigeravatar's Avatar
    Join Date
    03-25-2011
    Location
    Colorado, USA
    MS-Off Ver
    Excel 2003 - 2013
    Posts
    5,361

    Re: Checking a cell for an image there and if present, deleting it

    thatotherguytoo,

    Welcome to the forum!
    Here is some commented code that should do what you're looking for:
    Please Login or Register  to view this content.
    Hope that helps,
    ~tigeravatar

    Forum Rules: How to use code tags, mark a thread solved, and keep yourself out of trouble

  3. #3
    Registered User
    Join Date
    09-11-2013
    Location
    that other place
    MS-Off Ver
    Excel 2007
    Posts
    2

    Re: Checking a cell for an image there and if present, deleting it

    Thank you very much! That worked! I think where I had gone grievously wrong was in assuming I should be going after .Shapes this entire time. I had code almost identical to what you were running there, but swap .Pictures for .Shapes. I switched everything around in what I had to reflect the change to .Pictures and it works perfectly. Seriously can't thank you enough!

  4. #4
    Registered User
    Join Date
    09-11-2013
    Location
    that other place
    MS-Off Ver
    Excel 2007
    Posts
    2

    Re: Checking a cell for an image there and if present, deleting it

    Actually, I had a couple questions so that hopefully I can learn more from this.

    Why when I had everything as shapes, did it not work? I tried the following but it gives a run-time error '1004': Application-defined or object-defined error. This is when I was copy/pasting the image over as a .Shape rather than .Picture.

    Please Login or Register  to view this content.
    Also, I think I have been using .Address incorrecty... You put (0,0) after yours - what does that do? I thought .Address just brought back the cell of whatever you tagged that on to.

    Thanks again for all the help!

  5. #5
    Forum Expert tigeravatar's Avatar
    Join Date
    03-25-2011
    Location
    Colorado, USA
    MS-Off Ver
    Excel 2003 - 2013
    Posts
    5,361

    Re: Checking a cell for an image there and if present, deleting it

    Shapes should work, the code could be written as:
    Please Login or Register  to view this content.

    I just prefer to use a more specific declaration of what I want removed. You wanted to delete a Picture, so I used that instead of the more generic Shape object.

    For the error, I'd have to see your code and which line of code was producing the error. Based on the error message, I would guess that you had a misspelled variable or sheet reference.

    .Address would bring the address back as an absolute reference (which just means using $ symbols): "$B$15".
    I dislike the $ signs because I like to just type in the cell address without them "B15"
    So using (0, 0) tells it to not use an absolute reference for both Column and Row (leave off the $ symbols).

    As an extended explanation...
    .Address => "$B$15"
    .Address(0) => "$B15"
    .Address(, 0) => "B$15"
    .Address(0, 0) => "B15"

+ 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. Replies: 3
    Last Post: 03-05-2024, 01:14 PM
  2. Checking for a symbol then copying text if it symbol is present
    By fedorafreak in forum Excel Formulas & Functions
    Replies: 1
    Last Post: 09-03-2013, 08:54 PM
  3. Copy For Cell Values Present and not Formulas Present
    By bdb1974 in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 09-11-2009, 12:10 PM
  4. if image is present, adjust autoshape
    By Armitage2k in forum Excel Programming / VBA / Macros
    Replies: 7
    Last Post: 09-05-2009, 08:30 AM
  5. Deleting an image
    By treva26 in forum Excel Programming / VBA / Macros
    Replies: 7
    Last Post: 07-17-2007, 08:59 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