Crystal reports selecting record that contain empty strings or "null" -


i have report field called jobno there records have "null" the cell value , have empty string "". there field called accntno im selecting in same selection formula.

this have tried without success in selection formula crystal reports.

{accnt.accno} = "7015" , {accnt.jobno} = "" or {accnt.jobno} isnull 

any apreciated

selection formula doesn't work expected, sometimes.

i suppose work

{accnt.accno} = "7015" , ( isnull({accnt.jobno}) or {accnt.jobno} = "" ) 

first of put parenthesis on 'or' clause.
but, strangest thing, isnull clause must evaluated before other comparison clauses.


Comments

Popular posts from this blog

ruby - Trying to change last to "x"s to 23 -

jquery - Clone last and append item to closest class -

c - Unrecognised emulation mode: elf_i386 on MinGW32 -