I am having trouble inserting Empty Date values into GoldMine 7 running on MS SQL Server
I have used the Add Fields tab in Inaport 7 to convert the date values from my Access Database to a format that GoldMine understands, but I cannot work out how to make the goldmine field empty when the source field is NULL. I have tried the following:
d2s(#DOB, "dd/MM/yy") - This gives an error on NULL dates in my source #DOB field
iif(isnull(#DOB),"",d2s(#DOB, "dd/MM/yy")) - This inserts the current date for some reason
iif(isnull(#DOB),NULL,d2s(#DOB, "dd/MM/yy")) - This also seems to insert the current date into goldmine.
Any Ideas??
Thanks
Russell