In the detail section I have something along these lines:
if part = "1100" and flag_closed = "y" then date_closed else _______ - what I need here is a null if that's possible. The only thing that seems to work is placing date('01/01/01') in this spot but I really need a blank field instead.
Further down in the subtotal area I'm using a maximum(date_closed) so if there's no other date info from the detail I get "01/01/01" as the maximum date which is obviously incorrect. How can I get around this? What is the correct logic to set a "date" field to null? Thanks...
if part = "1100" and flag_closed = "y" then date_closed else _______ - what I need here is a null if that's possible. The only thing that seems to work is placing date('01/01/01') in this spot but I really need a blank field instead.
Further down in the subtotal area I'm using a maximum(date_closed) so if there's no other date info from the detail I get "01/01/01" as the maximum date which is obviously incorrect. How can I get around this? What is the correct logic to set a "date" field to null? Thanks...