I have a situation where i have a null value coming in for a column and that value needs to be replaced with another value.
Current mdx
select
non empty { [measures.[Color count]} on columns
,non empty { [ColorColor].[Color].[Color].allmembers}
Dimention properties
member caption
,member_unique_name
on rows
from [Colors]
Current Results
Color Color Count
null 1
Red 1
Blue 1
Purple 1
Black 1
Intended Results
Color Color Count
Silver 1
Red 1
Blue 1
Purple 1
Black 1
Basically I need to replace the null with the color "silver". Also the null needs to be replaced in mdx and not in ssrs.