I have a field(FundDate). if left empty, I want to update record with a null value, otherwise the date entered. <br><br>I was told I need to type 3 ###'s so it will recognize it, but just don't work. <br><br>Update Table<br> Set<br> FundRaiserDate = <br> <cfif #FundDate# is not ''><br> ###FundDate###<br> <cfelse><br> null<br> </cfif> <br><br>What's wrong with it. Thanks.<br><br>