일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- c#
- ASP
- jQuery
- javascript
- 프로시저
- SSRS
- Winform
- 단축키
- microsoft
- CONVERT()
- 마이크로소프트
- 엑셀
- Excel
- aspnet
- 이클립스
- attr()
- MSSQL
- windows
- 자바스크립트
- MS
- 비주얼스튜디오
- DataGrid
- 윈도우
- 윈폼
- replace()
- IIS
- oracle
- 리포팅서비스
- 오라클
- 태그를 입력해 주세요.
- Today
- Total
DJ메탈짱™의 Free Style
[SSRS] 리포팅서비스 InScope Function 을 활용한 백그라운드 컬러 설정 본문
|
|
Jorg, a friend and colleague wrote an interesting blog about using the InScope() function in a matrix to take control on the behavior of your subtotals. I’d like to extend his example to illustrate how you can use this function to change the style of the (total)cells in your matrix.
As Jorg already explained you get the following default groups when you create a matrix in a SSRS 2005 report:
A row group named: matrix1_RowGroup1
A column group named: matrix1_ColumnGroup1
When you use the following expression for the Background color property of the data field in your matrix, you can make the Background color of the group total differ from the color of the data field(s):
=IIF(InScope("matrix1_ColumnGroup1"),
IIF(InScope("matrix1_RowGroup1"),
"In Cell",
"In Subtotal of RowGroup1"),
IIF(InScope("matrix1_RowGroup1"),
"In Subtotal of ColumnGroup1",
"In Subtotal of entire matrix"))
You can replace "In Cell", "In Subtotal of RowGroup1", "In Subtotal of ColumnGroup1" and/or "In
Subtotal of entire matrix" with any color you prefer. For example:
=IIF(InScope("matrix1_ColumnGroup1"),
IIF(InScope("matrix1_RowGroup1"),
"White",
"Blue"),
IIF(InScope("matrix1_RowGroup1"),
"#ff8000",
"Red"))
If you'd like to change the font settings for the totals, replace the expression for the Color property to:
=IIF(InScope("matrix1_ColumnGroup1"),
IIF(InScope("matrix1_RowGroup1"),
"Black",
"White"),
IIF(InScope("matrix1_RowGroup1"),
"White",
"White"))
'일(job) > DBMS' 카테고리의 다른 글
[SSRS] 리포팅서비스 64비트 컴퓨터에 32비트 Reporting Services 설치 (0) | 2016.01.19 |
---|---|
[SSRS] 리포팅서비스 시스템 요구 사항 (0) | 2016.01.19 |
[SSRS] 리포팅서비스 권한설정(Active Directory 인증) (0) | 2016.01.19 |
[SSRS] 리포팅서비스 평균값 반올림하여 (%) 표현하기 #FORMAT() (0) | 2016.01.19 |
[SSRS] 리포팅서비스 테이블 No 표시 (0) | 2016.01.19 |