Foundset group by question

I already asked a similar question and Rob gave me god solution going over a global variable.
viewtopic.php?f=4&t=15513#p83403

But now I have a different problem.
The foundset I have, has some calculated fields, which I fill and calculate in a different Function

Exaple Calculated Field

function value()
{
	return;
}

I have my foundset whit the Calculated Field and for user two entries for example. How can I group by value on the user in my foundset?

Regards
ttmgybta

ttmgybta,

If you want to group over data that is not in the db (like non-stored calcs) you will have to loop over the founset.

Rob