JonWay
JonWay

Reputation: 1735

SSRS HEADER CHANGE (Change column name)

I have the following table in which I have already calculated the 95 percentile in SQL SERVER 2012.I want to produce the report in SSRS 2008R2. But when I place [95th%ile] in SSRS table column, it change the header to [ID95th ile]. Is there a way I can change it to [95th%ile] as this is what is in the current excel report and I have been told not to change it to any other name Below is sample data that I am using.

CREATE TABLE ##PerCent (month Varchar(10), Percentile INT)
INSERT INTO ##PerCent
VALUES
('Jan',153),
('Feb',171),
('Mar',141)

SELECT 
month,
Percentile  AS '95th%ile'
FROM ##PerCent

Upvotes: 1

Views: 1596

Answers (1)

alejandro zuleta
alejandro zuleta

Reputation: 14108

You cannot add a field which name starts with numbers or any character different to a letter.

enter image description here

However you can change the name in the tablix header if you are presenting the dataset in that component.

enter image description here

Let me know if this helps.

Upvotes: 4

Related Questions