+ Reply to Thread
Results 1 to 3 of 3

execute external program when cell reaches certain value

  1. #1
    Brendan DJ Murphy
    Guest

    execute external program when cell reaches certain value

    Hi,

    As the subject-line says, Is there an easy way to make Excel execute
    another program triggered by a cell meeting a certain criteria?

    Thanks

    Brendan




  2. #2
    Registered User
    Join Date
    08-08-2011
    Location
    glasgow
    MS-Off Ver
    Excel 2003
    Posts
    5

    Re: execute external program when cell reaches certain value

    Hello,
    You could use something like:
    While Range("B11") = "25" Then
    Shell ("C:\WINDOWS\system32\notepad.exe"), vbMaximizedFocus
    Wend
    While Range("B11")<>25 then
    .....
    Wend

  3. #3
    Forum Expert
    Join Date
    07-16-2010
    Location
    Northumberland, UK
    MS-Off Ver
    Excel 2007 (home), Excel 2010 (work)
    Posts
    3,054

    Re: execute external program when cell reaches certain value

    You need to put some code tags in your reply, Aileen.

    Also, I'd be wary of putting a shell command inside a while loop, unless closing down 7 gazillion Notepad windows is your idea of a good afternoon

    Brendan - the easiest way to do it would be to put some code in the worksheet change event. If you give us a bit more detail about what you're trying to do people will be able to give you some more specific advice.

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

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