Hi,I need to fill one small tablix on report which is define like below, chalenge that it's mixed content words and numeric together that's why column defined as varchar, but on tablix I 'd like to apply numeric formatting with no decimal places, 1000 separator to id=2,3, If I do changes to text box property/Number/ it does't take it , probably because it's varchar, is it possible to to this formatting inside RDL, as I don't want to touch that sp ?My goal it to have on tablix:Flag Name | AlphaVolume | 1,000Amount | 22[code="sql"] CREATE TABLE #tbl ( ID INT, [Description] NVARCHAR(250), Value NVARCHAR(50) DEFAULT '' ) INSERT INTO #tbl VALUES (1,'Flag Name', 'Alpha') , (2,'Volume', '1000.00') , (3,'Amount', '22.00') SELECT * FROM #tbl[/code]ThanksM
↧