Greetings Clarion friends
I need to know how to return a blank field when another field has no value entered
eg
if log:spouse is blank the CHI:spage must be blank. At the moment it returns a value of 202.
Kind regards
Greetings Clarion friends
I need to know how to return a blank field when another field has no value entered
eg
if log:spouse is blank the CHI:spage must be blank. At the moment it returns a value of 202.
Kind regards
Need a little more information to help. At the moment itβs all very very ambiguous.
Returning from what / where?
A Field where? A table? A window? A function?
Are the fields all string ?
RETURN CHOOSE(NOT log:spouse, '', CHI:spage )
eNil EQUATE(ββ) ! Nothing equate
Thanks Douglas. Will give it a try