Charting Data which is under/over a certain Value!

AdamWWD

Board Regular
Joined
Nov 2, 2012
Messages
50
I am hoping that someone can point me in the right direction here.

I have a sheet which is as follows (only just a couple of rows pasted here)

Code:
[TABLE="width: 406"]
<colgroup><col><col><col><col></colgroup><tbody>[TR]
[TD]DateOfArrival
[/TD]
[TD]   Country
[/TD]
[TD]Fruit[/TD]
[TD]SmallestBerry[/TD]
[/TR]
[TR]
[TD="align: right"]04/09/2014
[/TD]
[TD]   Poland
[/TD]
[TD]Blueberries[/TD]
[TD="align: right"]0[/TD]
[/TR]
[TR]
[TD="align: right"]03/09/2014[/TD]
[TD]   Mexico
[/TD]
[TD]Blueberries[/TD]
[TD="align: right"]13[/TD]
[/TR]
[TR]
[TD="align: right"]03/09/2014[/TD]
[TD]   Poland
[/TD]
[TD]Blueberries[/TD]
[TD="align: right"]8[/TD]
[/TR]
[TR]
[TD="align: right"]03/09/2014   
[/TD]
[TD]Poland
[/TD]
[TD]Blueberries[/TD]
[TD="align: right"]8[/TD]
[/TR]
</tbody>[/TABLE]

What I Need to do is Chart the amount of times that 'Smallestberry' is under 14, but I also need to show the data by country and Histograms arent working for with this.

If someone would be so kind and help it would be appreciated.

Thanks
 

Excel Facts

Workdays for a market open Mon, Wed, Friday?
Yes! Use "0101011" for the weekend argument in NETWORKDAYS.INTL or WORKDAY.INTL. The 7 digits start on Monday. 1 means it is a weekend.
Try a Setup like this:

Excel 2012
ABCDEFG
1DateOfArrivalCountryFruitSmallestBerryUnique CountryCount
24/9/2014PolandBlueberries0Poland3
33/9/2014MexicoBlueberries13Mexico1
43/9/2014PolandBlueberries8
53/9/2014PolandBlueberries8
Data Review Check
Cell Formulas
RangeFormula
G2=COUNTIFS($B$2:$B$5,F2,$D$2:$D$5,"<14")
G3=COUNTIFS($B$2:$B$5,F3,$D$2:$D$5,"<14")


Or look at filtering your data by Criteria (<14) and simply using a PivotChart. CLICK HERE FOR MORE INFO ON PIVOT CHART
 
Upvote 0

Forum statistics

Threads
1,214,606
Messages
6,120,488
Members
448,967
Latest member
visheshkotha

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top