SSRS HEADER CHANGE(更改列名)
SSRS HEADER CHANGE (Change column name)
我有以下 table,其中我已经计算了 SQL 服务器中的第 95 个百分位数 2012.I 想要在 SSRS 2008R2 中生成报告。但是当我将 [95th%ile] 放在 SSRS table 列中时,它将 header 更改为 [ID95th ile]。有没有办法可以将它更改为 [95th%ile],因为这是当前 excel 报告中的内容,我被告知不要将其更改为任何其他名称
以下是我正在使用的示例数据。
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
我有以下 table,其中我已经计算了 SQL 服务器中的第 95 个百分位数 2012.I 想要在 SSRS 2008R2 中生成报告。但是当我将 [95th%ile] 放在 SSRS table 列中时,它将 header 更改为 [ID95th ile]。有没有办法可以将它更改为 [95th%ile],因为这是当前 excel 报告中的内容,我被告知不要将其更改为任何其他名称 以下是我正在使用的示例数据。
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