Skip to content

Commit eb7dba4

Browse files
Merge pull request #349 from MicrosoftDocs/main638925985032862993sync_temp
For protected branch, push strategy should use PR and merge to target branch method to work around git push error
2 parents fee19bf + 3a35050 commit eb7dba4

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

query-languages/m/value-functions.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
description: "Learn more about: Value functions"
33
title: "Value functions"
4-
ms.date: 7/16/2025
4+
ms.date: 9/3/2025
55
ms.custom: "nonautomated-date"
66
---
77
# Value functions
@@ -51,8 +51,8 @@ These functions evaluate and perform operations on values.
5151
|[Value.Firewall](value-firewall.md) | This function is intended for internal use only.|
5252
|[Value.ViewError](value-viewerror.md) | This function is intended for internal use only.|
5353
|[Value.ViewFunction](value-viewfunction.md) | This function is intended for internal use only.|
54-
|[Variable.Value](variable-value.md) | This function is intended for internal use only.|
55-
|[Variable.ValueOrDefault](variable-valueordefault.md) | This function is intended for internal use only.|
54+
|[Variable.Value](variable-value.md) | Returns the value of the specified variable.|
55+
|[Variable.ValueOrDefault](variable-valueordefault.md) | Returns the value of the specified variable or the default value if the variable is not defined.|
5656

5757
## Metadata
5858

query-languages/m/variable-value.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ Variable.Value(<b>identifier</b> as text) as any
1313

1414
## About
1515

16-
This function is intended for internal use only.
16+
Returns the value of the specified variable `identifier` defined by the current evaluation environment. If the variable is not defined, an error is raised.

query-languages/m/variable-valueordefault.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ Variable.ValueOrDefault(<b>identifier</b> as text, optional <b>defaultValue</b>
1313

1414
## About
1515

16-
This function is intended for internal use only.
16+
Returns the value of the specified variable `identifier` defined by the current evaluation environment. If the variable is not defined, the optional `defaultValue` is returned.

0 commit comments

Comments
 (0)