You have to decide what you want to happen with the records where the field = "Product Summary", but the date is null. Maybe you want to set the date to today's date or maybe you want to ignore them--only you can tell us.
If you want to ignore them, you can set up a formula for the date where nulls are set to some future date, as in the following:
//{@date}:
if isnull({table.date}) or
trim({table.date}) = "" then
"2999/09/09" else //set this up in the same format as your field displays
{table.date}
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.