June 23, 2009 at 2:35 am
How can i use xls to format this node like this
*$199 SHARED
24MTHS
AS PER AGREEEMENT PRE MAY.
*BAN: 645938292
Thanks in advance
June 23, 2009 at 1:55 pm
I don't know if the following example will answer your question...
DECLARE @xml XML
SELECT @xml='
*$199 SHARED
24MTHS
AS PER AGREEEMENT PRE MAY.
*BAN: 645938292
'
SELECT
c.value('.','varchar(30)')
FROM @xml.nodes('ORDER_NOTES/TEXT') AS t(c)
/* result
*$199 SHARED
24MTHS
AS PER AGREEEMENT PRE MAY.
*BAN: 645938292
*/
June 23, 2009 at 10:21 pm
Thanks but
sorry dude i was after an xsl stuff
June 24, 2009 at 4:19 am
Patrick Ige (6/23/2009)
Thanks butsorry dude i was after an xsl stuff
You might wanna try http://tinyurl.com/l8cveg.
Note: This is a professional forum. "Dude" is inappropriate and does influence the way I'll answer.
June 24, 2009 at 6:10 am
Sorry
Viewing 5 posts - 1 through 4 (of 4 total)
You must be logged in to reply to this topic. Login to reply