August 7, 2003 at 5:00 am
Hi all,
When I try to make changes to the "Member Name Column" (do some formatting) I receive the message as in the subject.
Is their a way to avoid this message ?
During the format I need to change a number i.e. 1 to a month let's say january, 2 --> february and so on.
The tables/views are located in an Oracle DB.
Thanks in advance.
Regards,
Bart
August 11, 2003 at 12:00 pm
This was removed by the editor as SPAM
August 13, 2003 at 12:09 am
Hi all,
How can I display the month's full name when
I have only a number indicates each month i.e. 1=January, 2=February...
Which formula can I use convert the number to a full month's name.
Thanks in advance.
Regards,
Bart
quote:
No one has responded to this topic yet. Even if you don't have a complete answer, the original poster will appreciate any thoughts you have!
August 13, 2003 at 12:22 am
Declare @Month INT
Select @Month=5
Select Datename(Month,'2001-'+Cast(@Month as Varchar(2))+'-1')
August 13, 2003 at 12:34 am
I assume that this T-SQL.
Do you perhaps know how I can input this in
The dimension editor for the field "Member Name Column"
Thanks in advance.
Regards,
Bart
PS Thanks for the very quick reply !
Viewing 5 posts - 1 through 4 (of 4 total)
You must be logged in to reply to this topic. Login to reply