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!

How can I get one field to display.

Status
Not open for further replies.

bandarna

Programmer
Jan 2, 2003
122
0
0
US
Hi,
I have existing report I need to modify it. Wanted to add a new field and that field needs to display using following sql:

select a.com_balance from [fmdprod1213].[dbo].[commit_hdrs] a,
[fmdprod1213].[dbo].[commit_items] b
where a.com_id = b.com_id
and a.com_xref_num = b.com_xref_num

the above sql returns only one values always. Just wanted to plug in. can anyone help me how can I do this?

-nb
 
If you already have the tables, you don't need a subreport. Just create a formula field wtih something like
Code:
if a.com_id = b.com_id
and a.com_xref_num = b.com_xref_num
then ToText(a.com_balance)
else " "

[yinyang] Madawc Williams (East Anglia, UK). Using Crystal 2008 with SQL and Windows XP [yinyang]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top