- Joined
- 18 June 2008
- Posts
- 1,071
- Reactions
- 2
So I'm having a bit of trouble with excel, a data point in my graph screws up when I change the referenced cell to one that has a formula in it. Any ideas why it the excel chart looks at the formula in the cell instead of the value of the cell? I have spent have the day trying to figure this out
I am trying to create a small chart with a stocks low last and high price, from 3 cells, in a horizontal bar sort of thing, like the pic below. Any ideas?
Seems like a simple request, although I can't find anything on the net that will do it (simply?), or maybe I am just missing something?
Thanks, but what am I looking for, as there is a lot of stuff there? Does this type of chart have a name?This type of chart can only be done with a VB macro in excel. Quite simple done this type of chart several times. The code can be found at the following website and you can modify it for your needs.
http://excel.tips.net/
Hi gurus.
if I wanted to compare two cell values as the same value I use something like this
=IF(A1=A2, "TRUE", "FALSE")
What about if I wanted to compare two values as true + or - 0.01% or if the values where very close but not exactly, something like 5678.67 and 5679.08, like less that 1 point diff?
Any ideas?
=IF(abs(A1-A2)<1,"TRUE","FALSE")
For a tick
=IF(abs(A1/A2-1)<0.1%,"TRUE","FALSE")
For 0.1%
Looks like you're dealing with annoying data
Gurus, nerds & nutters here is another one I'm stumped on.
Trying to check if the last cell is the highest or lowest for a range. Easy if looking for just the Highest,
=IF(A5=Max(A1:A5), "High")
But how do I get,
=(A5=Max(A1:A5), "High") OR IF(A5=Min(A1:A5), "Low")
=IF(A5=MIN(A1:A5),"MIN",IF(A5=MAX(A1:A5),"MAX"))
Gurus, nerds & nutters here is another one I'm stumped on.
Trying to check if the last cell is the highest or lowest for a range. Easy if looking for just the Highest,
=IF(A5=Max(A1:A5), "High")
But how do I get,
=(A5=Max(A1:A5), "High") OR IF(A5=Min(A1:A5), "Low")
=IF(A5>LARGE(A1:A4,1),"High",IF(A5<SMALL(A1:A4,1),"Low","Equal"))
We use cookies and similar technologies for the following purposes:
Do you accept cookies and these technologies?
We use cookies and similar technologies for the following purposes:
Do you accept cookies and these technologies?