|
2 | 2 | title: M Language Operators |
3 | 3 | description: Describes using operators in the Power Query M formula language |
4 | 4 | ms.topic: conceptual |
5 | | -ms.date: 8/2/2022 |
| 5 | +ms.date: 5/25/2023 |
6 | 6 | --- |
7 | 7 |
|
8 | 8 | # Operator behavior |
@@ -257,10 +257,10 @@ For example: |
257 | 257 | {"a","b","c"}{0}? // "a" |
258 | 258 | {1, [A=2], 3}{1}? // [A=2] |
259 | 259 | {true, false}{2}? // null |
260 | | -#table({"A","B"},{{0,1},{2,1}}){0} // [A=0,B=1] |
261 | | -#table({"A","B"},{{0,1},{2,1}}){[A=2]} // [A=2,B=1] |
262 | | -#table({"A","B"},{{0,1},{2,1}}){[B=3]} // null |
263 | | -#table({"A","B"},{{0,1},{2,1}}){[B=1]} // error |
| 260 | +#table({"A","B"},{{0,1},{2,1}}){0}? // [A=0,B=1] |
| 261 | +#table({"A","B"},{{0,1},{2,1}}){[A=2]}? // [A=2,B=1] |
| 262 | +#table({"A","B"},{{0,1},{2,1}}){[B=3]}? // null |
| 263 | +#table({"A","B"},{{0,1},{2,1}}){[B=1]}? // error |
264 | 264 | ``` |
265 | 265 |
|
266 | 266 | Item access does not force the evaluation of list or table items other than the one being accessed. For example: |
|
0 commit comments