Min and Max Values on Chart

B

Bill

Hello,
Is there a quick (and easy) way of determing the minimum and maximum values
of data points on a chart? I have multiple lines on a chart and want to be
able to find the min value and the max value.

Thanks.

Bill
 
T

Tom Ogilvy

go to the source data and do

set rng = <source data range>
dblMin = application.Min(rng)
dblMax = Application.Max(rng)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top