Jimmypop
Well-known Member
- Joined
- Sep 12, 2013
- Messages
- 753
- Office Version
- 365
- Platform
- Windows
Good day all
Stumped a bit on this one and not sure how to proceed...
So I have an item, Item1, that has a target set (in this case 8 (Cell C2)). Only 3 of the 8 are available (Value in B2). I calculate the percentage of this in D2 WHICH IS 38%. This is then rounded to the nearest 10 which is 40%. Then to get my coordinates on my Scatter Graph (made to look like a target) I have TargetPNT where X will always be 5 but Y will change depending on the value in D3 (which as per my example is 40%). This means that 40% is equal to 4 so my xy scatter coordinates will be 5 and 7.5.
No my issue is that if I type the 7.50 in manually then my data point appears on my graph, however if I use a formula to determine the y coordinate then my graph does not show the data point. What am I doing wrong and is there a way to do this?
Stumped a bit on this one and not sure how to proceed...
So I have an item, Item1, that has a target set (in this case 8 (Cell C2)). Only 3 of the 8 are available (Value in B2). I calculate the percentage of this in D2 WHICH IS 38%. This is then rounded to the nearest 10 which is 40%. Then to get my coordinates on my Scatter Graph (made to look like a target) I have TargetPNT where X will always be 5 but Y will change depending on the value in D3 (which as per my example is 40%). This means that 40% is equal to 4 so my xy scatter coordinates will be 5 and 7.5.
No my issue is that if I type the 7.50 in manually then my data point appears on my graph, however if I use a formula to determine the y coordinate then my graph does not show the data point. What am I doing wrong and is there a way to do this?
Book1.xlsx | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|
A | B | C | D | E | F | G | H | |||
1 | Item | Actual | Target | Percentage Complete | ||||||
2 | Item1 | 3 | 8 | 38% | Bulls Eye | 4.48 | 4.98 | |||
3 | TargetPNT | 5 | 7.50 | 40% | 1 | 5 | 8.75 | |||
4 | 2 | 5 | 8.3 | |||||||
5 | 3 | 5 | 7.95 | |||||||
6 | 4 | 5 | 7.5 | |||||||
7 | 5 | 5 | 7.1 | |||||||
8 | 6 | 5 | 6.7 | |||||||
9 | 7 | 5 | 6.3 | |||||||
10 | 8 | 5 | 5.8 | |||||||
11 | 9 | 5 | 5 | |||||||
Sheet1 |
Cell Formulas | ||
---|---|---|
Range | Formula | |
D2 | D2 | =B2/C2 |
C3 | C3 | =IF(D3>0.39,"7.50","0") |
D3 | D3 | =ROUND(D2,1) |