Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Formatting a SUBTOTAL

Status
Not open for further replies.

LeonelSanchezJr

Programmer
Jan 26, 2001
522
US
I need my SUBTOTALS to be formatted as INTEGERS instead of DECIMALS.

Thanks,

Leo ;-)
 
Use ON field SUBFOOT with RECAPs. Like;

SUM Realfld
BY sortfld
ON sortfld RECAP
Intfld/I5=Realfld;
ON sortfld SUBFOOT
"<Intfld>
 
Leo,

SUBTOTAL fields take the same format as the fields which they total. What formats are the fields? If integer, then you should already be getting integer subtotals. If not, then what would expect to happen to the decimal portion of the field?
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top