Viewing 5 posts - 1 through 5 (of 5 total)
i executed the the below function
CREATE FUNCTION SPLIT(@VAL VARCHAR(MAX))
RETURNS @T1 TABLE(COL1 VARCHAR(MAX))
AS
BEGIN
WHILE CHARINDEX(',',@VAL)>0
BEGIN
INSERT INTO @T1 VALUES(SUBSTRING(@VAL,1,(CHARINDEX(',',@VAL))-1))
SET @val=SUBSTRING(@VAL,(CHARINDEX(',',@VAL))+1,LEN(@VAL))
END
INSERT INTO @T1 VALUES(@VAL)
RETURN
END
Below mentioned is my SP
--exec Fms_Subject 'M001,L001,D004,B001'
Alter Proc...
December 22, 2012 at 12:52 am
Thnks divya..its working
September 14, 2012 at 12:04 am
i have only 1 multi value parameter "P"
May 15, 2012 at 10:54 pm
thank you,
in SSRS 2005 there is option to separate thousands(1,234,567,890).but i need in lakhs separator (1,23,45,67,890)...
do you have any idea how to do this.. if u do ..please explain it...
April 23, 2011 at 1:40 am
=sum(Fields!Total_Amount.Value)
this is the expression i am using to sum the particular value.can anyone tell me how to use the below condition for the above expression...
=Format(Fields!Price.Value, "#,##0.00")
April 13, 2011 at 12:11 am
Viewing 5 posts - 1 through 5 (of 5 total)