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

Problem with isnull Field 1

Status
Not open for further replies.

Crystalfire

Programmer
Jan 29, 2002
315
US
Works good except when the {CUST_ADDRESS.COUNTRY} is null. Then I still need to see the {CUSTOMER.TERRITORY}. How do I insert that isnull factor into this formula? Thanks!

if {CUSTOMER.COUNTRY}<>{CUST_ADDRESS.COUNTRY}then {CUSTOMER.TERRITORY} else
if isnull ({CUST_ADDRESS.TERRITORY}) then {CUSTOMER.TERRITORY} else {CUST_ADDRESS.TERRITORY}
 
Hi,
Test for IsNull first...also be sure to have the tables linked with a Left Outer Join if the Customer may not exist in the CUST_ADDRESS table...





[profile]

To Paraphrase:"The Help you get is proportional to the Help you give.."
 
The field does have null properties as the "" does not work. The tables are in a Left Outer Join.
 
I used the Formula if isnull ( {CUST_ADDRESS.COUNTRY})then "X". This brings back X's to the details that are blank.
What is wroung with the formula

if {CUSTOMER.COUNTRY}<>{CUST_ADDRESS.COUNTRY}then {CUSTOMER.COUNTRY}
else
if isnull ({CUST_ADDRESS.COUNTRY}) then {CUSTOMER.COUNTRY} else {CUST_ADDRESS.COUNTRY}
 
Hi
Test for IsNull first:
Code:
if (isnull ({CUST_ADDRESS.COUNTRY})or {CUSTOMER.COUNTRY}<>{CUST_ADDRESS.COUNTRY}
then 
{CUSTOMER.COUNTRY}
Else
{CUST_ADDRESS.COUNTRY}

[profile]

To Paraphrase:"The Help you get is proportional to the Help you give.."
 
Hi,
No problem - Crystal's handling of Nulls in formulas rivals Oracle's handling of them..Very 'special needs'..




[profile]

To Paraphrase:"The Help you get is proportional to the Help you give.."
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top