+ Reply to Thread
Results 1 to 4 of 4

Formatting

  1. #1
    Registered User
    Join Date
    02-08-2012
    Location
    London
    MS-Off Ver
    Excel 2007
    Posts
    9

    Formatting

    Hey people,

    I have three very extensive columns of data. I want to somehow identify figures in column A that fall between figures adjacent to one another in columns B and C and I'm having trouble. I thought my best bet would be to conditionally format the data and then sort it by that but I can only seem to do that when all the values are on the same row.
    Can anyone help?

    To illustrate what I mean in case that wasn't clear, here is an example
    A B C
    12 10 20
    7 32 33
    50 25 37
    19 79 94
    28 100 150
    So if this was my data, then I would want to identify 12 (between 10 and 20), 19 (between 10 and 20) and 28 (between 25 and 37)


    Thanks a lot!

    -C

  2. #2
    Forum Guru Kyle123's Avatar
    Join Date
    03-10-2010
    Location
    Leeds
    MS-Off Ver
    365 Win 11
    Posts
    7,239

    Re: Need some formatting help?

    use a helper column with the formula
    PHP Code: 
    =IF(AND(A1>=B1,A1<=C1),1,0
    Then filter on 1

  3. #3
    Forum Expert Bob Phillips's Avatar
    Join Date
    09-03-2005
    Location
    Wessex
    MS-Off Ver
    Office 2003, 2010, 2013, 2016, 365
    Posts
    3,284

    Re: Need some formatting help?

    Use conditional formatting with a formula of

    =ISNUMBER(SUM(MATCH(1,(A1>=$B$1:$B$5)*(A1<=$C$1:$C$5),0)))

  4. #4
    Registered User
    Join Date
    02-08-2012
    Location
    London
    MS-Off Ver
    Excel 2007
    Posts
    9

    Re: Need some formatting help?

    Thanks guys! Mad skills

+ 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