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

Output values in reports as different

Status
Not open for further replies.

dmaier

MIS
Apr 13, 2002
38
US
I have a query which uses a cryptic value of me21 in all records for someone who has registered via the web. In a report I want to show all of the values of me21 as WEB. I think there is a way to do this but don't know how. Can anyone help?
 
If you just want to replace that one value among many you might want to look at the IIf Statement in Access Help

IIf(TestMe > 1000, "Large", "Small")

or in your case maybe

IIf([YourFieldValue] = "me21", "Web", [YourFieldValue])

you can do an Advanced Search here for IIf also. It should render some other examples.
 
Have you tried
Code:
IIf("[TableName].[FieldName] = 'me21'", "[ReportName].[FieldName] = 'WEB'", "[ReportName].[FieldName] = [TableName].[FieldName]")

Hope this helps.

-------------------------
Just call me Captain Awesome.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top