+ Reply to Thread
Results 1 to 3 of 3

How to create dialox boxes?

  1. #1
    MIKE
    Guest

    How to create dialox boxes?

    I am trying to create a daolg box /and or macro that will allow me to check
    the information form a list that I have defined in Excel. This information
    will be directly put into the cell.

    Thanks for your help



  2. #2
    Tom Ogilvy
    Guest

    Re: How to create dialox boxes?

    Checking a list is a little vague. What do you mean by Check?

    --
    Regards,
    Tom Ogilvy

    "MIKE" <[email protected]> wrote in message
    news:[email protected]...
    > I am trying to create a daolg box /and or macro that will allow me to

    check
    > the information form a list that I have defined in Excel. This information
    > will be directly put into the cell.
    >
    > Thanks for your help
    >
    >




  3. #3
    pumpbhoy
    Guest

    RE: How to create dialox boxes?

    Mike,

    If what you mean by check is compare or look for some common value then you
    could try something like this:

    For Each c In Range("E11", Range("E10").End(xlDown))
    exspec = c.Value
    Set y = Range("K1101", Range("K1100").End(xlDown)).Find(exspec,
    LookIn:=xlValues)
    If y Is Nothing Then
    Your action here
    End if

    I used this to compare 2 lists and then take some appropriate action.

    "MIKE" wrote:

    > I am trying to create a daolg box /and or macro that will allow me to check
    > the information form a list that I have defined in Excel. This information
    > will be directly put into the cell.
    >
    > Thanks for your help
    >
    >


+ 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