I have a column (say column A) of values that gives the current values of stocks and two other columns (columns B and C) that give the highest and lowest values the stocks reach respectively. I want the B and C columns to update accordingly if column A rises above or drops below the values already in columns B and C.
For example:
A1 = $10, B1 = $15, C1 = $5
When A1 = $20, I want B1 = $20, C1 = $5
Then if A1 = $3, I want B1 = $20, C1 = $3
I've tried an IF statement but I end up doing a circular reference by trying something like IF(A1>B1,A1,B1)
Is there a way I can make the cells update accordingly without a circular reference error?
For example:
A1 = $10, B1 = $15, C1 = $5
When A1 = $20, I want B1 = $20, C1 = $5
Then if A1 = $3, I want B1 = $20, C1 = $3
I've tried an IF statement but I end up doing a circular reference by trying something like IF(A1>B1,A1,B1)
Is there a way I can make the cells update accordingly without a circular reference error?