Hi,
I have a ranges dimension which is based on this table:
-------------
c_range lower_range upper_range
1 0 100
2 101 200
3 201 <null>
-------------
I want the dimension to show the ranges, i.e.,
0-100, 101-200 and so on. So i wrote in dimension editor-
member name col:
convert(char,"dbo"."TABLE_NAME"."N_LOWER_RANGE"
+'-'+ convert(char,"dbo"."TABLE_NAME"."N_UPPER_RANGE"
But in the last row it shows nothing because I've added
"dbo"."TABLE_NAME"."N_UPPER_RANGE" which is null.
what do I need to change?
thanks.
I have a ranges dimension which is based on this table:
-------------
c_range lower_range upper_range
1 0 100
2 101 200
3 201 <null>
-------------
I want the dimension to show the ranges, i.e.,
0-100, 101-200 and so on. So i wrote in dimension editor-
member name col:
convert(char,"dbo"."TABLE_NAME"."N_LOWER_RANGE"
+'-'+ convert(char,"dbo"."TABLE_NAME"."N_UPPER_RANGE"
But in the last row it shows nothing because I've added
"dbo"."TABLE_NAME"."N_UPPER_RANGE" which is null.
what do I need to change?
thanks.