+ Reply to Thread
Results 1 to 4 of 4

reference for a cell in the same column

Hybrid View

  1. #1
    Registered User
    Join Date
    01-22-2007
    Posts
    5

    reference for a cell in the same column

    how can I compare data from the same column and differnt rows?

    for example I want to compare a1 to a2, and set B2 =1, if a1=a2, and b2=2, otherwise.
    I can do it with formula in b2: =if(a1=a2,1,2).
    Now I can copy this formula for cells b3 thru b15.

    the problem arises, when one row is added, or deleted in the middle of the rows.

    my question is : is it possible to refernce a2, as the a(current row +1)? or a3 as a(current row -1)

    so my formula would be =if(a(current row) = a(currentrow-1), 1,2)

  2. #2
    Forum Expert
    Join Date
    01-15-2007
    Location
    Brisbane, Australia
    MS-Off Ver
    2007
    Posts
    6,591
    Hi

    Try

    =IF(INDIRECT("A"&ROW())=INDIRECT("A"&ROW()-1),1,2)


    rylo

  3. #3
    Registered User
    Join Date
    01-19-2007
    Location
    Bangalore, India
    Posts
    66
    Hi,

    If you are using VBA then you may write it as well.

    If ActiveCell.Value=ActiveCell.Offset(1,0).Value Then
    B=1
    Else
    B=2
    End If

    Regards,
    Gajendra Gupta

  4. #4
    Registered User
    Join Date
    01-22-2007
    Posts
    5

    Wink

    Quote Originally Posted by rylo
    Hi

    Try

    =IF(INDIRECT("A"&ROW())=INDIRECT("A"&ROW()-1),1,2)


    rylo


    Thank you very much! it worked!
    and if you govorish' po russki- bol'shoe spasibo, rylo (morda(?), litso, punim)

+ 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