【发布时间】:2016-04-08 15:33:15
【问题描述】:
我有一个在 Report Builder 3.0 中构建的 SSRS 矩阵报表。数据看起来不错,但行不对齐。每个单元格都位于单独的行中,使报告难以理解和阅读。
这是截图:
以下是报告所依据的示例数据:
SELECT 's111' AS sessionID, 'q1' AS questionID, 'q1_a1' AS answerID,
'True/False : The Sun orbits the Earth.' AS stem,
'True' AS SelectedItem, 'False' AS UnselectedItem
UNION ALL
SELECT 's111', 'q2', 'q2_a1',
'MCQ: What planet is the largest gas giant in our solar system?',
'Jupiter', 'Moon'
UNION ALL
SELECT 's111', 'q2', 'q2_a2',
'MCQ: What planet is the largest gas giant in our solar system?',
'Jupiter', 'Venus'
UNION ALL
SELECT 's111', 'q2', 'q2_a3',
'MCQ: What planet is the largest gas giant in our solar system?',
'Jupiter', 'Vulcan'
UNION ALL
SELECT 's111', 'q2', 'q2_a4',
'MCQ: What planet is the largest gas giant in our solar system?',
'Jupiter', 'Pluto'
UNION ALL
SELECT 's111', 'q3', 'q3_a1',
'MCQ/Many: Pick the items that best describe why Mars does NOT currently support complex life.',
'God hates Martians', 'Intense radiation from the Sun'
UNION ALL
SELECT 's111', 'q3', 'q3_a2',
'MCQ/Many: Pick the items that best describe why Mars does NOT currently support complex life.',
'God hates Martians', 'Very dry, little to no liquid water'
UNION ALL
SELECT 's111', 'q3', 'q3_a3',
'MCQ/Many: Pick the items that best describe why Mars does NOT currently support complex life.',
'God hates Martians', 'very cold'
UNION ALL
SELECT 's111', 'q3', 'q3_a4',
'MCQ/Many: Pick the items that best describe why Mars does NOT currently support complex life.',
'God hates Martians', 'Intense radiation from an ancient nuclear holocaust'
有没有办法修复这些行?
谢谢!
【问题讨论】:
标签: reporting-services ssrs-2008 ssrs-2008-r2 ssrs-2012 reportbuilder3.0