Gossamer Forum
Home : Products : Gossamer Forum : Discussion :

Re: [SeanP] Total of a Field...

Quote Reply
Re: [SeanP] Total of a Field... In reply to
For every user?

You could try;

<%global_name%>

Code:
sub {
my $total;
my $sth = $DB->table('User')->select( ['FieldName'] );
while (my ($value) = $sth->fetchrow) {
$total += $value;
}
return $total;
}

This is untested, and will require a little tweaking to match up with your field names ... but it should work :)

Cheers

Andy (mod)
andy@ultranerds.co.uk
Want to give me something back for my help? Please see my Amazon Wish List
GLinks ULTRA Package | GLinks ULTRA Package PRO
Links SQL Plugins | Website Design and SEO | UltraNerds | ULTRAGLobals Plugin | Pre-Made Template Sets | FREE GLinks Plugins!
Subject Author Views Date
Thread Total of a Field... SeanP 2811 Nov 30, 2004, 8:14 AM
Thread Re: [SeanP] Total of a Field...
Andy 2717 Nov 30, 2004, 8:26 AM
Post Re: [Andy] Total of a Field...
SeanP 2705 Nov 30, 2004, 8:54 AM