Hi,
you could use a query like this as the basis of the chart:
SELECT IIf([InvLength]<3,[InvLength]) AS [>3 months], IIf([InvLength] Between 3 And 6,[InvLength]) AS [3-6 months], IIf([InvLength]>6,[InvLength]) AS [>6 months]
FROM MyTable
or already including the counts:
SELECT Count(IIf([InvLength]<3,[InvLength])) AS [>3 months], Count(IIf([InvLength] Between 3 And 6,[InvLength])) AS [3-6 months], Count(IIf([InvLength]>6,[InvLength])) AS [>6 months]
FROM MyTable
Depending on what kind of chart you use (there are new or old charts) you will have to do some more work but the fitting data should be available now.
Karl
http://www.AccessDevCon.com
http://www.donkarl.com/?AEK