Hello,

Let's say I have this data:

------------ Min --- 25th---Med---75th---Max
Grade 210 30000 35000 40000 45000 50000
Grade 211 35000 40000 45000 50000 55000
Grade 212 45000 50000 55000 60000 65000
Grade 250 60000 65000 70000 75000 80000

It's salary data, and what I want to do is create a stacked bar graph that shows the variance rather than adding the values. I want my Y axis to have the grades, and the x axis to have a basic numerical scale, say 0 to 80000. Each grade should show as one stacked bar the values listed (example Grade 210 should start at 30000 and end at 50000 with segments at 40000 and 45000).

Every stacked bar graph I make adds the values one after the other, when what I want to show is the range.

Thanks for the help!