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

Nulls in UDF's

Status
Not open for further replies.

Charliy

Programmer
Aug 12, 2008
601
US
I'm currently using Crsytal XI which does not allow the use of ISNULL within a custom function. Do later versions allow this?

My rather awkward workaround is the following ungainly formula to call the function:
artest({I10TST.CODE},(if isnull({I10TST.DX2}) then ' ' else {I10TST.DX2}), (if isnull({I10TST.DX3}) then ' ' else {I10TST.DX3}), (if isnull({I10TST.DX4}) then ' ' else {I10TST.DX4}),(if isnull({I10TST.DX5}) then ' ' else {I10TST.DX5}) )
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top