Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi everyone,
from the sample data below ,
Month | Prod | Stock |
Feb | A | 10 |
Feb | B | 20 |
Feb | C | 30 |
Feb | D | 40 |
Mar | A | 20 |
Mar | B | 39 |
Mar | C | 34 |
Mar | D | 23 |
i created this bar chart :
and now i want to know if it's possible to add a fifth (horizontal) bar to the chart (same chart) for the average ( Month : feb )
Thanks
Will this do?
Thanks,
Prabhu
i know this method but i want to add a horizontal bar
Hi
There is no option in bar chart. You can use the reference line
And increase the weight as per attached file
Chk it out
test:
LOAD * INLINE [
mon, Prod, Stock
Feb, A, 10
Feb, B, 20
Feb, C, 30
Feb, D, 40
Mar, A, 20
Mar, B, 39
Mar, C, 34
Mar, D, 23
];
Concatenate
load mon, 'Avg' as Prod, avg(Stock) as Stock
Resident test
Group by mon;
Thanks,
Prabhu
Like below... Please confirm... i will upload the trick...
Also, confirm which edition you are using ?
i.e. Licensed or Personal...
Please mark it as correct answer if the solution provided is suitable for you.
Thanks,
Prabhu
is there any method to get the same result using chart expression not in the load script ?
thnaks
thanks for your help but the results seems to be wrong !
What could be the result?
Kindly let me know, I will check and confirm back...