-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCALCULATE EVALUATION ORDER-examples.dax
176 lines (151 loc) · 3.64 KB
/
CALCULATE EVALUATION ORDER-examples.dax
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
-- Connect this using DAX Studio (or DAX Query view) to a AdventureWorks 2020 PBIX
-- link: https://github.com/microsoft/powerbi-desktop-samples/blob/main/DAX/Adventure%20Works%20DW%202020.pbix
-- 01
-- without context transition, expressions are evaluated over
-- the current filter contex
--
EVALUATE
SELECTCOLUMNS (
Sales,
"Measure",
COUNTROWS ( 'Date' )
)
-- 02
-- context transition happens over the expanded table
--
EVALUATE
SELECTCOLUMNS (
Sales,
"Measure",
CALCULATE ( COUNTROWS ( 'Date' ) )
)
-- 03
-- Best practice is to be selective over the group by columns
--
EVALUATE
ADDCOLUMNS (
ALL ( 'Date'[Fiscal Year] ),
"Measure",
CALCULATE ( COUNTROWS ( 'Date' ) )
)
-- 04
-- You can block context transition effect
--
EVALUATE
ADDCOLUMNS (
ALL ( 'Date'[Fiscal Year] ),
"Measure",
CALCULATE (
COUNTROWS ( 'Date' ),
ALL ( 'Date'[Fiscal Year] )
)
)
-- 05
-- You can override context transition
--
EVALUATE
ADDCOLUMNS (
ALL ( 'Date'[Fiscal Year] ),
"Measure",
CALCULATE (
COUNTROWS ( 'Date' ),
'Date'[Fiscal Year] = "FY2020"
)
)
-- 06
-- You can restore external filter contexts
--
EVALUATE
SUMMARIZECOLUMNS (
'Date'[Fiscal Year],
TREATAS ( { "FY2019", "FY2020" }, 'Date'[Fiscal Year] ),
"Measure",
CALCULATE (
COUNTROWS ( 'Date' ),
ALLSELECTED ( 'Date'[Fiscal Year] )
)
)
-- 07
-- You can override a restored filter contexts
--
EVALUATE
SUMMARIZECOLUMNS (
'Date'[Fiscal Year],
TREATAS ( { "FY2018", "FY2019" }, 'Date'[Fiscal Year] ),
"Measure",
CALCULATE (
COUNTROWS ( 'Date' ),
ALLSELECTED ( 'Date'[Fiscal Year] ),
'Date'[Fiscal Year] = "FY2020"
)
)
-- 08
-- Two filters have the same weight
--
EVALUATE
ADDCOLUMNS (
ALL ( 'Date'[Fiscal Year] ),
"Measure",
CALCULATE (
COUNTROWS ( 'Date' ),
'Date'[Fiscal Year] IN { "FY2018", "FY2019" },
'Date'[Fiscal Year] IN { "FY2019", "FY2020" }
)
)
-- 09
-- KEEPFILTERS do not block previous filters
--
EVALUATE
ADDCOLUMNS (
ALL ( 'Date'[Fiscal Year] ),
"Measure",
CALCULATE (
COUNTROWS ( 'Date' ),
KEEPFILTERS ( 'Date'[Fiscal Year] IN { "FY2018", "FY2019" } )
)
)
-- 10
-- KEEPFILTERS do not block previous filters2
--
EVALUATE
ADDCOLUMNS (
ALL ( 'Date'[Fiscal Year] ),
"Measure",
CALCULATE (
CALCULATE (
COUNTROWS ( 'Date' ),
KEEPFILTERS ( 'Date'[Fiscal Year] IN { "FY2018", "FY2019" } )
),
'Date'[Fiscal Year] IN { "FY2019", "FY2020" }
)
)
-- 11
-- Model Modifiers only act after filters are evaluated
-- under the current model
--
EVALUATE
ADDCOLUMNS (
ALL ( 'Date'[Fiscal Year] ),
"Measure",
CALCULATE (
COUNTROWS ( 'Date' ),
CROSSFILTER ( 'Date'[DateKey], Sales[OrderDateKey], NONE ),
REMOVEFILTERS ( Sales ) -- with relationship version
)
)
-- 12
-- Model Modifiers only act after filters are evaluated
-- under the current model2
--
EVALUATE
ADDCOLUMNS (
ALL ( 'Date'[Fiscal Year] ),
"Measure",
CALCULATE (
CALCULATE (
COUNTROWS ( 'Date' ),
REMOVEFILTERS ( Sales ) -- without relationship version
),
CROSSFILTER ( 'Date'[DateKey], Sales[OrderDateKey], NONE )
)
)