You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: sml-reference/dimension.md
+40Lines changed: 40 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -229,6 +229,8 @@ namespace Dimensions{
229
229
Boolean is_aggregatable
230
230
Boolean exclude_from_fact_agg
231
231
Array~CustomEmptyMember~ custom_empty_member
232
+
Boolean is_excel_pivot_table_property
233
+
Boolean is_user_defined_property
232
234
}
233
235
class MetricalAttribute{
234
236
String unique_name
@@ -295,6 +297,8 @@ namespace Dimensions{
295
297
CustomEmptyMember custom_empty_member
296
298
Boolean is_hidden
297
299
Boolean contains_unique_names
300
+
Boolean is_excel_pivot_table_property
301
+
Boolean is_user_defined_property
298
302
}
299
303
class CustomEmptyMember{
300
304
Array~String~ key
@@ -910,6 +914,24 @@ Excludes this attribute from system generated fact-based aggregates. This is use
910
914
911
915
Defines a custom empty member for the attribute. This feature allows fact data with missing or invalid foreign key values to be isolated and independently aggregated from those with valid foreign key values. Because fact records with invalid foreign keys are aggregated separately from records referencing valid dimension members, analysts can easily spot data integrity problems and further investigate them. Use this feature to ensure that un-joinable values are included in query results and aggregated under a specially designated dimension member called the Custom Empty Member.
912
916
917
+
## is_excel_pivot_table_property
918
+
919
+
-**Type:** boolean
920
+
-**Required:** N
921
+
-**Default:** true
922
+
-**Added in** v1.5
923
+
924
+
If set to false (default true) Excel users are not able to use the attribute in the Pivot Table Designer. Note: The attribute will still be usable with other interfaces like SQL and DAX if the "visible" property is true.
925
+
926
+
## is_user_defined_property
927
+
928
+
-**Type:** boolean
929
+
-**Required:** N
930
+
-**Default:** true
931
+
-**Added in** v1.5
932
+
933
+
If set to true Excel and MDX users can retrieve the attribute as a Member Property using the .Properties function and Property MDX syntax
934
+
913
935
# Alias Properties
914
936
915
937
## unique_name
@@ -1028,6 +1050,24 @@ Supported values:
1028
1050
1029
1051
Defines custom empty member values for the alias. This feature allows fact data with missing or invalid foreign key values to be isolated and independently aggregated from those with valid foreign key values. Because fact records with invalid foreign keys are aggregated separately from records referencing valid dimension members, analysts can easily spot data integrity problems and further investigate them. Use this feature to ensure that un-joinable values are included in query results and aggregated under a specially designated dimension member called the Custom Empty Member.
1030
1052
1053
+
## is_excel_pivot_table_property
1054
+
1055
+
-**Type:** boolean
1056
+
-**Required:** N
1057
+
-**Default:** true
1058
+
-**Added in** v1.5
1059
+
1060
+
If set to false (default true) Excel users are not able to use the attribute in the Pivot Table Designer. Note: The attribute will still be usable with other interfaces like SQL and DAX if the "visible" property is true.
1061
+
1062
+
## is_user_defined_property
1063
+
1064
+
-**Type:** boolean
1065
+
-**Required:** N
1066
+
-**Default:** true
1067
+
-**Added in** v1.5
1068
+
1069
+
If set to true Excel and MDX users can retrieve the attribute as a Member Property using the .Properties function and Property MDX syntax
0 commit comments