Skip to content

Commit f3a13a1

Browse files
Merge pull request #633 from MicrosoftDocs/doug-quickfix-0006
Added missing question marks to code sample
2 parents 4d7d19a + 8bac005 commit f3a13a1

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

query-languages/m/m-spec-operators.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: M Language Operators
33
description: Describes using operators in the Power Query M formula language
44
ms.topic: conceptual
5-
ms.date: 8/2/2022
5+
ms.date: 5/25/2023
66
---
77

88
# Operator behavior
@@ -257,10 +257,10 @@ For example:
257257
{"a","b","c"}{0}? // "a"
258258
{1, [A=2], 3}{1}? // [A=2]
259259
{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
264264
```
265265

266266
Item access does not force the evaluation of list or table items other than the one being accessed. For example:

0 commit comments

Comments
 (0)