|
Cet article a fait l'objet d'une traduction manuelle. Déplacez votre pointeur sur les phrases de l'article pour voir la version originale de ce texte. Informations supplémentaires.
|
Traduction
Source
|
Propriétés de champ étendues pour une base de données Analysis Services (SSRS)
-
Fields!FieldName("PropertyName")
-
Fields!FieldName.PropertyName
-
Fields!FieldName("PropertyName")
|
Propriété |
Type |
Description ou valeur attendue |
|---|---|---|
|
Value |
Object |
|
|
IsMissing |
Boolean |
|
|
UniqueName |
String |
|
|
BackgroundColor |
String |
|
|
Color |
String |
|
|
FontFamily |
String |
|
|
FontSize |
String |
|
|
FontWeight |
String |
|
|
FontStyle |
String |
|
|
TextDecoration |
String |
|
|
FormattedValue |
String |
|
|
Key |
Object |
|
|
LevelNumber |
Integer |
|
|
ParentUniqueName |
String |
|
Remarque
|
|---|
|
|
Exemple de propriétés étendues
WITH MEMBER [Measures].[DateCaption]
AS '[Date].[Date].CURRENTMEMBER.MEMBER_CAPTION'
MEMBER [Measures].[DateUniqueName]
AS '[Date].[Date].CURRENTMEMBER.UNIQUENAME'
MEMBER [Measures].[DateDayName]
AS '[Date].[Date].Properties("Day Name")'
MEMBER [Measures].[DateValueinOriginalDatatype]
AS '[Date].[Date].CURRENTMEMBER.MEMBER_VALUE'
MEMBER [Measures].[DateParentUniqueName]
AS '[Date].[Date].CURRENTMEMBER.PARENT_UNIQUE_NAME'
MEMBER [Measures].[DateMemberKeyinOriginalDatatype]
AS '[Date].[Date].CURRENTMEMBER.MEMBER_KEY'
SELECT {
[Measures].[DateCaption],
[Measures].[DateUniqueName],
[Measures].[DateDayName],
[Measures].[DateValueinOriginalDatatype],
[Measures].[DateParentUniqueName],
[Measures].[DateMemberKeyinOriginalDatatype]
} ON COLUMNS , [Date].[Date].ALLMEMBERS ON ROWS
FROM [Adventure Works]
SELECT NON EMPTY {[Measures].[Order Count]} ON COLUMNS,
NON EMPTY { ([Date].[Month of Year].[Month of Year] ) }
DIMENSION PROPERTIES
MEMBER_CAPTION, MEMBER_UNIQUE_NAME, MEMBER_VALUE ON ROWS
FROM [Adventure Works]
CELL PROPERTIES
VALUE, BACK_COLOR, FORE_COLOR,
FORMATTED_VALUE, FORMAT_STRING,
FONT_NAME, FONT_SIZE, FONT_FLAGS
=Fields!Month_of_Year("MEMBER_VALUE")

Remarque