Sorry, that didn't work...
I also need to be able to add all these Nulls (which will eventually be zeros) together...
Kind of like a spreadsheet...
Anyway, I can't set the DefaultValue to Zero, because I am in a query...I can only set a default value in a table...and I'm making the table dynamically...
I have tried the (0 + fieldName) as well as Val(fieldName)
Neither of these worked...
Main Topics
Browse All Topics





by: aprasrlPosted on 1997-11-19 at 01:31:28ID: 1441406
Why don't you set the DefaultValue for the field to zero ?
Or you could use a statement like this
Select (0+FieldName) As TempField ....