Microsoft Access formatting: Need format to display either Date or "0". 0 keeps displaying as 12:00:00AM, how to fix? -
i need make 1 field either displays date or value of 0. they're 2 separate formats, , can't access mix 2 up. logic functions keep displaying errors me.
you can conditional formatting "custom" format:
[=0] 0; [>0] mm/dd/yyyy;
[=0]
checks if value zero, if so, cell set 0. if greater 0, use mm/dd/yyyy
or whatever date format like.
Comments
Post a Comment