+ Reply to Thread
Results 1 to 5 of 5

Intersection reminder - for nobel prize:)

  1. #1
    Registered User
    Join Date
    09-22-2014
    Location
    europe
    MS-Off Ver
    microsoft office 2010
    Posts
    23

    Intersection reminder - for nobel prize:)

    Hi guys,

    I have a value, lets say 100, which is a "border" value and I would need a signal anytime this border would be crossed. Yes I know, simple If command could solve this very fast... =if(A1=>100;"More";"Less").... and if VALUE would be 110 or 186 I would always have a signal it is "MORE".

    BUT!

    Let's say I don't want to have this "MORE" or "LESS" signal for the value all the time. For an example... If value jumps from 90 to 115, I would just like to get one signal, but when it goes to 116 or 200 or 1500, I would not like to have it anymore. And of course when values are starting to fall under 100 I would need a signal for the first value which hits under 100, while rest would not be tracked...

    I am sorry, I am not able to use VBA editor with whom many of you are working. Is there any simple solution within excel?

    Thank you.

  2. #2
    Forum Expert shg's Avatar
    Join Date
    06-20-2007
    Location
    The Great State of Texas
    MS-Off Ver
    2003, 2010
    Posts
    40,678

    Re: Intersection reminder - for nobel prize:)

    Maybe ...

    Row\Col
    A
    B
    C
    1
    2
    97
    -- B2: =IF(AND(A1<=100, A2>100), "More", IF(AND(A1>=100, A2<100), "Less", "--"))
    3
    101
    More
    4
    103
    --
    5
    100
    --
    6
    103
    More
    7
    102
    --
    8
    100
    --
    9
    97
    Less
    10
    95
    --
    11
    105
    More
    12
    99
    Less
    13
    98
    --
    14
    103
    More
    15
    101
    --
    16
    105
    --
    17
    95
    Less
    Entia non sunt multiplicanda sine necessitate

  3. #3
    Registered User
    Join Date
    09-22-2014
    Location
    europe
    MS-Off Ver
    microsoft office 2010
    Posts
    23

    Re: Intersection reminder - for nobel prize:)

    Thank you for reply. I tried your formula but it doesn't work.

    Really basically I need just one signal for the first value which would cross the border value of let's say 100.

    Let's assume A1 has value 79. B1 should be empty. A1 goes to 99, B1 is still empty. But when A1 goes to 110, B1 should show signal that value went over 100 (let's say: "Crossed"), then A1 would be 150 and B1 would need to be empty, as long A1 doesn't fall under 100 again and B1 would signal that.

    For me it is essential that B1 which follows A1 is empty most of the time, only when A1 value crosses the border (in up or down) it would need to give a signal that border value was crossed.

  4. #4
    Forum Expert
    Join Date
    03-28-2014
    Location
    Hyderabad,India
    MS-Off Ver
    Excel 2013
    Posts
    1,887

    Re: Intersection reminder - for nobel prize:)

    =IF(A1<100,"",IF(AND(A1>100,A1<150),"Crossed",""))

    Try this in b1

    Punnam

  5. #5
    Registered User
    Join Date
    09-22-2014
    Location
    europe
    MS-Off Ver
    microsoft office 2010
    Posts
    23

    Re: Intersection reminder - for nobel prize:)

    Thanks guys, I solved it with iterative option... Thank you for your help anyway! I appreciate it.

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Replies: 1
    Last Post: 07-16-2013, 06:41 PM
  2. Prize Won - Count of Prize
    By vinaynaran in forum Excel General
    Replies: 2
    Last Post: 07-31-2009, 09:13 AM
  3. Help a dumb **** & win a prize
    By pricey in forum Excel General
    Replies: 1
    Last Post: 04-27-2006, 05:45 AM
  4. [SOLVED] Prize Calculation
    By shahbaze in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 02-15-2005, 06:45 PM
  5. [SOLVED] Prize Calculation
    By prize calculation in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 02-15-2005, 06:45 PM

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