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

Missing data from displayed reports

Status
Not open for further replies.

nwrprtr

Programmer
May 3, 2002
3
0
0
US
I am sort of new to WebFOCUS. When run and display a fex report, focus is not printing duplicate row information. How can I enable focus to print all data whether it is duplicate or not?

example:

last name first name service_date
doe john 4/15/01
. . 5/25/01
. . 7/18/01
. jane 4/12/01
. . 4/19/01


Any ideas???
 
table file xxxx
print lastname as 'last name'
firstname as 'first name'
service_date
by lastname noprint
by firtsname noprint
end

The report will be sorted properly and all values will be displayed...
 
Can I suggest you look at the recent entry by 'sumathy' at the FOCUS forum. She has exactly the opposite problem to you !
 
I solved my own problem. I should have posted more information. The missing information only occurs when I use a MATCH FILE. Instead of using MATCH FILE, I have effectively solved this problem using the JOIN statement or incorporating SQL into the report. Thanks for the help!!!
 
Try this!!

table file xxxx
print
-*lastname as 'last name'
-*firstname as 'first name'
service_date
by lastname
by firtsname
end

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top