cancel
Showing results for 
Search instead for 
Did you mean: 

Get The Minium Value in Crystal Reports

Former Member
0 Kudos

I'm trying to use the Running Totals in Crystal Reports 8.5 to get the minimum value of a series of fields.

Ex.:

A - 50

B - 300

C - 400

I need to get the B - 300 line.

Is there anyother way to figure this is out without using the Running Totals?

Thanks in advance

Accepted Solutions (1)

Accepted Solutions (1)

DellSC
Active Contributor
0 Kudos

Is your data grouped? If so, or if you want to do the minimum for the whole report, you can use the min summary function. If your data is grouped, you'll create a formula that looks like this:

min({field}, {group field})

If you need it for the whole report, the formula will look like this:

min({field})

-Dell

p.s. Crystal 8.5 has been out of support for over 10 years. As you upgrade your OS, it may not work with newer versions of Windows.

Answers (1)

Answers (1)

Former Member
0 Kudos

Sorry for the delay!

Thank u very much!