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

Another URGENT HELP: what's the syntax for empty in Crystal Report?

Status
Not open for further replies.

sommererdbeere

Programmer
Nov 20, 2003
112
US
hi,


this is extremely urgent. in Crystal report, i had a formula where i want to retrieve all the date where count_date field is empty. below is the code i wrote,

if {?count_date} = "" then {?count_date}

however, it keeps highlight ("") and asking me about date for ("").. what does it mean?? is there any other way i can ask to get all date where the field is empty??

many many many thanks.. tahnk u thank u..

m
 
I'm not clear what you're after, but try something like
if isnull({?count_date}) then "No Date"
else Totext({?count_date}, "dd MMM yy")

This assumes Crystal 8.5, it varies between version.

Madawc Williams
East Anglia, Great Britain
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top