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

c# - Can I intercept a SOAP response in .NET before a content type binding mismatch ProtocolException? -

python - Terminate a gnome-terminal opened with subprocess -

c - Unrecognised emulation mode: elf_i386 on MinGW32 -