Skip to content

Commit e4c38b9

Browse files
authored
Merge pull request #800 from MicrosoftDocs/doug-2025Feb-updates
Added March update to Power Query M reference
2 parents d04622b + 3c5f7ea commit e4c38b9

3 files changed

Lines changed: 3 additions & 5 deletions

File tree

query-languages/m/docfx.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
"author": "dougklopfenstein",
4949
"ms.author": "dougklo",
5050
"searchScope": ["Power Query","M formula language"],
51-
"ms.date": "1/17/2025",
51+
"ms.date": "2/10/2025",
5252
"no-loc": [
5353
"#binary",
5454
"#date",

query-languages/m/table-stopfolding.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Fetches data from a SQL table in a way that prevents any downstream operations f
2525
let
2626
Source = Sql.Database("SomeSQLServer", "MyDb"),
2727
MyTable = Source{[Item="MyTable"]}[Data],
28-
MyLocalTable = Table.StopFolding(dbo_MyTable)
28+
MyLocalTable = Table.StopFolding(MyTable)
2929
in
3030
MyLocalTable
3131
```

query-languages/m/type-is.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,7 @@ Type.Is(<b>type1</b> as type, <b>type2</b> as type) as logical
1313

1414
## About
1515

16-
Determines if a value of `type1` is always compatible with `type2`.
17-
18-
Parameter `type2` should be a primitive (or nullable primitive) type value. Otherwise, this function's behavior is undefined and shouldn't be relied on.
16+
Determines if a value of `type1` is always compatible with `type2`. Parameter `type2` should be a primitive (or nullable primitive) type value. Otherwise, this function's behavior is undefined and shouldn't be relied on.
1917

2018
## Example 1
2119

0 commit comments

Comments
 (0)