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

Only display one report header.

Status
Not open for further replies.

kutibo

MIS
Dec 19, 2000
22
US
How can I make a report only display one report header based on criteria.. If the account number is 387 or 390 then display the the building header, else display the account header? Thanks
 
What is in the header now?
If I follow you, you have a field that has an "account header" is 387 or 390.
Ok so if "account number" = 387 then print "building header"
else if its 390 then print "account header"?
Create an unbound text box on your report and put it in the Header area.
put this in the source
=iif(me![account header]=387, "building header","account header")


DougP, MCP
dposton@universal1.com

Ask me how Bar-codes can help you be more productive.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top