Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Simple question - is there a way to change the default NullProcessing setting from Automatic to Preserve?

When you have a measure with NULL values in some rows these NULL values are by default changed to 0 due to the default NULLProcessing setting. I would like to change this setting, so the default value is Preserve.

Kind Regards, Søren

share|improve this question
I might add that I am using SQL Server 2008R2 – sdjensen Feb 6 at 13:05

1 Answer

Yes.

Change the NullProcessing property for the measure(s) to Preserve. You can find this in the properties window when you expand Source folder. Preserve is the first of four available options.

share|improve this answer
I know you can change this setting on each measure one by one. But I want change the default, so when I create a new measure NullProcessing is set to Preserve and not Automatic. Sorry if my question wasn't clear enough. – sdjensen Feb 12 at 14:52

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.