Col. B in the sample sheet below has a user-defined formula that queries the web to update stock prices. I need a formula in Col. C that updates the amount in Col. C whenever Col. B becomes greater than Col. C. For example, in the sample sheet, assume Col. B is updated with new prices and the price in cell B3 becomes 87.33, which is higher than the 86.59 in C3. I need a formula in cell C3 that automatically changes the amount in that cell to be 87.33.
I tried this formula:
=if (B3>C3,B3,C3)
but that gives a circular reference error (and displays “0.00”), apparently because C3 is referring to itself.
Can anyone help? I would like to do this with a formula, not using VBA.
Thanks in advance.
....... A.............B............C
1... Stock.....Current...Highest
....................Price......Price
2 Acme Corp. 45.32 46.74
3 Jones Corp. 87.33 86.59
4 Zebra Corp. 62.82 64.09
I tried this formula:
=if (B3>C3,B3,C3)
but that gives a circular reference error (and displays “0.00”), apparently because C3 is referring to itself.
Can anyone help? I would like to do this with a formula, not using VBA.
Thanks in advance.
....... A.............B............C
1... Stock.....Current...Highest
....................Price......Price
2 Acme Corp. 45.32 46.74
3 Jones Corp. 87.33 86.59
4 Zebra Corp. 62.82 64.09
Last edited: