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 strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

help needed in report

Status
Not open for further replies.

reacha

Programmer
Jun 9, 2010
83
US
The same case as i posted earlier
(Need to get the first record from the third group)

but in this report i have group by username and then group by accountnumber and pkgid. now i have the
count({command.pkgid},{command.pkgid}) i need to get the username and accountnumber,pkgid when the count >=2

for ex:

UserName AccountNumber pkgid count
-------- ------------- ------ ------
Tom 2000 11111 2
22222 2
george 2001 33333 1
peter 1000 44444 2
55555 1

output should be
----------------

Tom 2000 11111 2
22222 2
peter 1000 44444 2

Please help me out with this

Thanks,
reacha
 
Go to report->selection formula->GROUP and enter:

count({command.pkgid},{command.pkgid}) >= 2

Participating in Tek-Tips implies both getting help and giving help, and so far you have only asked for assistance. Please consider contributing to others by responding to their threads when you can help.

-LB
 
Thanks lbass.

Surely,I will help others by responding to there threads if i know the answer



Thanks,
Rupa
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top