+ Reply to Thread
Results 1 to 2 of 2

Thread: Detecting Double Entries

  1. #1
    comparini3000
    Guest

    Detecting Double Entries

    I'd like to use an "IF" statement for a macro, but I dont' know how to
    describe the condition to VBA. Basically, the condition is whether or not two
    cells have the same value in column K. Thanks

    comparini3000

  2. #2
    Ken
    Guest

    RE: Detecting Double Entries

    Assuming rows 1 and 2
    If Cells(1, 11).Value = Cells(2, 11).Value then

    or

    If Range("K1").Value = Range("K2").Value then

    You don't really have to use the .Value part

    "comparini3000" wrote:

    > I'd like to use an "IF" statement for a macro, but I dont' know how to
    > describe the condition to VBA. Basically, the condition is whether or not two
    > cells have the same value in column K. Thanks
    >
    > comparini3000


+ 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.2.0