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

Pull alternate field if first fields null 1

Status
Not open for further replies.

TechUser23

IS-IT--Management
Mar 8, 2007
28
US
I have two fields

{data.ProviderName}
{data.resource}

Alot of the time, the enduser is not entering the ProviderName so its causing a blank field to display in my report. How can I program a formula to Pull from ProviderName first and if it null pull the Resource name?
 
Try:

if isnull({data.ProviderName}) then
{data.resource} else
{data.ProviderName}

-LB
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top