Report Builder 3.0 图表 - 需要显示空类别组

发布于 2024-12-13 19:14:13 字数 158 浏览 1 评论 0原文

我正在使用 SQL Server Report Builder 3.0 创建条形图。该图表是满意度分数的计数(优秀、非常好、良好、一般、差),并有一个条形显示每个相应的分数。它工作得很好,除非没有带有特定分数的记录。我希望能够显示所有选项,即使值为零。有没有办法在那里放置占位符或以其他方式强制它显示?

I am using SQL Server Report Builder 3.0 to create a bar chart. The chart is a count of satisfaction scores (Excellent, Very Good, Good, Fair, Poor), with a bar showing each of the respective scores. It works beautifully, except in the case where there are no records with a specific score. I would like to be able to show all of the options, even if there is a value of zero. Is there a way to put a placeholder there or otherwise force it to show?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

苍白女子 2024-12-20 19:14:13

创建另一个包含所有类别名称的表。

CREATE TABLE CATEGORIES(ID NOT NULL PRIMARY KEY);

然后将类别名称插入表中。

INSERT INTO CATEGORIES
VALUES ('Excellent', 'Very Good', 'Good', 'Fair', 'Poor');

然后,对于条形图数据集,

SELECT C.ID, COUNT(A.ID)
FROM Categories C
LEFT OUTER JOIN yourTableNameHere A on C.ID = A.category
GROUP BY C.ID;

结果将是一个包含 (CategoryName, Count) 记录的数据集。

Create another table that contains all of the category names.

CREATE TABLE CATEGORIES(ID NOT NULL PRIMARY KEY);

Then insert the category names into the table.

INSERT INTO CATEGORIES
VALUES ('Excellent', 'Very Good', 'Good', 'Fair', 'Poor');

Then for your bar chart dataset,

SELECT C.ID, COUNT(A.ID)
FROM Categories C
LEFT OUTER JOIN yourTableNameHere A on C.ID = A.category
GROUP BY C.ID;

The result will be a dataset with (CategoryName, Count) records.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文