Hi ,
I am facing problem with superscript
In my table i have data like "a<sup>2</sup>b<sup>3</sup>" this should be display as a²b³
The values are coming in table variably so i cant do this manually. So please help me on this....I am fine with either SQL or SSRS expressions
-----------------------------------------------------------------------------------------------------------------
CREATE TABLE [dbo].[SuperScriptTable](
[ColumnA] [nvarchar](max) NOT NULL
) ON [PRIMARY]
GO
INSERT [dbo].[SuperScriptTable] ([ColumnA]) VALUES (N'a<sup>2</sup>b<sup>3</sup>')
INSERT [dbo].[SuperScriptTable] ([ColumnA]) VALUES (N'c<sup>2</sup>d<sup>3</sup>')
INSERT [dbo].[SuperScriptTable] ([ColumnA]) VALUES (N'e<sup>2</sup>f<sup>3</sup>')
DROP TABLE [dbo].[SuperScriptTable]
Please Mark as Answer if my post solved your problem or Vote As Helpful if this helps. Blogs: www.sqlserver2005forum.blogspot.com