I am having a problem trying to sum data where some columns have null values in them. I return null when I should be returning a value due to the null in certain cells.
col001 col002 col003
150 100 null (col001+col002+col003) = NULL
Can anyone tell me how I can sum these colums while at the same time omitting or bypassing the null value. I am not able to remove the nulls from the table.
Thanks,
Frank
col001 col002 col003
150 100 null (col001+col002+col003) = NULL
Can anyone tell me how I can sum these colums while at the same time omitting or bypassing the null value. I am not able to remove the nulls from the table.
Thanks,
Frank