Microsoft
70-448 · Question #286
You create a SQL Server 2008 Reporting Services (SSRS) report. The report contains a table. You need to ensure that alternate rows in the table have a pale green background. Which code segment…
The correct answer is B. =iif(RowNumber(Nothing) Mod 2, "PaleGreen", "White"). See the full explanation below for the reasoning.
Question
You create a SQL Server 2008 Reporting Services (SSRS) report. The report contains a table. You need to ensure that alternate rows in the table have a pale green background. Which code segment should you use for each text box?
Options
- A=iif(RowNumber(Nothing) / 2, "PaleGreen", "White")
- B=iif(RowNumber(Nothing) Mod 2, "PaleGreen", "White")
- C=iif(CountRows() / 2, "PaleGreen", "White")
- D=iif(CountRows() Mod 2, "PaleGreen", "White")
How the community answered
(33 responses)- A6% (2)
- B73% (24)
- C3% (1)
- D18% (6)
Community Discussion
No community discussion yet for this question.