Skip to content

Commit

Permalink
Update formula-reference-dataverse.md
Browse files Browse the repository at this point in the history
Replaced dashes with emdashes to match formatting of the Power Fx Formula Reference page
  • Loading branch information
CatSchneider authored Nov 12, 2023
1 parent a7546a4 commit f54cc6b
Showing 1 changed file with 47 additions and 47 deletions.
94 changes: 47 additions & 47 deletions power-platform/power-fx/formula-reference-dataverse.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,155 +22,155 @@ In this article, learn about all the functions available in Microsoft Dataverse.

## <a id="-a"></a> A

**[Abs](reference/function-numericals.md )** - Absolute value of a number.
**[Abs](reference/function-numericals.md )** Absolute value of a number.

**[And](reference/function-logicals.md )** - Boolean logic AND. Returns true if all arguments are true. You can also use the [&& operator](reference/operators.md).
**[And](reference/function-logicals.md )** Boolean logic AND. Returns true if all arguments are true. You can also use the [&& operator](reference/operators.md).

**[Average](reference/function-aggregates.md )** - Calculates the average of a table expression or a set of arguments.
**[Average](reference/function-aggregates.md )** Calculates the average of a table expression or a set of arguments.

## B

**[Blank](reference/function-isblank-isempty.md )** - Returns a *blank* value that can be used to insert a NULL value in a data source.
**[Blank](reference/function-isblank-isempty.md )** Returns a *blank* value that can be used to insert a NULL value in a data source.

## C

**[Char](reference/function-char.md )** - Translates a character code into a string.
**[Char](reference/function-char.md )** Translates a character code into a string.

**[Collect](reference/function-clear-collect-clearcollect.md )** – Creates a collection or adds data to a data source.

**[Concatenate](reference/function-concatenate.md )** - Concatenates strings.
**[Concatenate](reference/function-concatenate.md )** Concatenates strings.

## D

**[DateAdd](reference/function-dateadd-datediff.md )** - Adds days, months, quarters, or years to a date/time value.
**[DateAdd](reference/function-dateadd-datediff.md )** Adds days, months, quarters, or years to a date/time value.

**[DateDiff](reference/function-dateadd-datediff.md )** - Subtracts two date values, and shows the result in days, months, quarters, or years.
**[DateDiff](reference/function-dateadd-datediff.md )** Subtracts two date values, and shows the result in days, months, quarters, or years.

**[Day](reference/function-datetime-parts.md )** - Retrieves the day portion of a date/time value.
**[Day](reference/function-datetime-parts.md )** Retrieves the day portion of a date/time value.

**[Defaults](reference/function-defaults.md )** – Returns the default values for a data source.

## E

**[EndsWith](reference/function-startswith.md )** - Checks whether a text string ends with another text string.
**[EndsWith](reference/function-startswith.md )** Checks whether a text string ends with another text string.

## G

**[GroupBy](reference/function-groupby.md )** – Returns a table with records grouped together.

## H

**[Hour](reference/function-datetime-parts.md )** - Returns the hour portion of a date/time value.
**[Hour](reference/function-datetime-parts.md )** Returns the hour portion of a date/time value.

## I

**[If](reference/function-if.md )** - Returns one value if a condition is true and another value if not.
**[If](reference/function-if.md )** Returns one value if a condition is true and another value if not.

**[IfError](reference/function-iferror.md )** - Detects errors and provides an alternative value or takes action.
**[IfError](reference/function-iferror.md )** Detects errors and provides an alternative value or takes action.

**[Int](reference/function-round.md )** - Rounds down to the nearest integer.
**[Int](reference/function-round.md )** Rounds down to the nearest integer.

**[IsBlank](reference/function-isblank-isempty.md )** - Checks for a [blank](reference/function-isblank-isempty.md) value.
**[IsBlank](reference/function-isblank-isempty.md )** Checks for a [blank](reference/function-isblank-isempty.md) value.

**[IsError](reference/function-iferror.md )** - Checks for an error.
**[IsError](reference/function-iferror.md )** Checks for an error.

**[ISOWeekNum](reference/function-weeknum.md )** - Returns the ISO week number of a date/time value.
**[ISOWeekNum](reference/function-weeknum.md )** Returns the ISO week number of a date/time value.

**[IsUTCToday](reference/function-now-today-istoday.md )** - Checks whether a date/time value is sometime today in Coordinated Universal Time (UTC).
**[IsUTCToday](reference/function-now-today-istoday.md )** Checks whether a date/time value is sometime today in Coordinated Universal Time (UTC).

## J

**[JSON](reference/function-json.md )** - Generates a JSON text string for a table, a record, or a value.
**[JSON](reference/function-json.md )** Generates a JSON text string for a table, a record, or a value.

## L

**[Lower](reference/function-lower-upper-proper.md )** – Converts letters in a string of text to all lowercase.

## M

**[Max](reference/function-aggregates.md )** - Maximum value of a table expression or a set of arguments.
**[Max](reference/function-aggregates.md )** Maximum value of a table expression or a set of arguments.

**[Mid](reference/function-left-mid-right.md )** - Returns the middle portion of a string.
**[Mid](reference/function-left-mid-right.md )** Returns the middle portion of a string.

**[Min](reference/function-aggregates.md )** - Minimum value of a table expression or a set of arguments.
**[Min](reference/function-aggregates.md )** Minimum value of a table expression or a set of arguments.

**[Minute](reference/function-datetime-parts.md )** - Retrieves the minute portion of a date/time value.
**[Minute](reference/function-datetime-parts.md )** Retrieves the minute portion of a date/time value.

**[Mod](reference/function-mod.md )** - Returns the remainder after a dividend is divided by a divisor.
**[Mod](reference/function-mod.md )** Returns the remainder after a dividend is divided by a divisor.

**[Month](reference/function-datetime-parts.md )** - Retrieves the month portion of a date/time value.
**[Month](reference/function-datetime-parts.md )** Retrieves the month portion of a date/time value.

## N

**[Not](reference/function-logicals.md )** - Boolean logic NOT. Returns true if its argument is false, and returns false if its argument is true. You can also use the [! operator](reference/operators.md).
**[Not](reference/function-logicals.md )** Boolean logic NOT. Returns true if its argument is false, and returns false if its argument is true. You can also use the [! operator](reference/operators.md).

## O

**[Or](reference/function-logicals.md )** - Boolean logic OR. Returns true if any of its arguments are true. You can also use the [|| operator](reference/operators.md).
**[Or](reference/function-logicals.md )** Boolean logic OR. Returns true if any of its arguments are true. You can also use the [|| operator](reference/operators.md).

## P

**[PlainText](reference/function-encode-decode.md )** – Removes HTML and XML tags from a string.

## R

**[Replace](reference/function-replace-substitute.md )** - Replaces part of a string with another string, by starting position of the string.
**[Replace](reference/function-replace-substitute.md )** Replaces part of a string with another string, by starting position of the string.

**[Right](reference/function-left-mid-right.md )** - Returns the right-most portion of a string.
**[Right](reference/function-left-mid-right.md )** Returns the right-most portion of a string.

**[Round](reference/function-round.md )** - Rounds to the closest number.
**[Round](reference/function-round.md )** Rounds to the closest number.

**[RoundDown](reference/function-round.md )** - Rounds down to the largest previous number.
**[RoundDown](reference/function-round.md )** Rounds down to the largest previous number.

**[RoundUp](reference/function-round.md )** - Rounds up to the smallest next number.
**[RoundUp](reference/function-round.md )** Rounds up to the smallest next number.

## S

**[Second](reference/function-datetime-parts.md )** - Retrieves the second portion of a date/time value.
**[Second](reference/function-datetime-parts.md )** Retrieves the second portion of a date/time value.

**[Set](reference/function-set.md )** – Sets the value of a global variable.

**[StartsWith](reference/function-startswith.md )** - Checks if a text string begins with another text string.
**[StartsWith](reference/function-startswith.md )** Checks if a text string begins with another text string.

**[Substitute](reference/function-replace-substitute.md )** - Replaces part of a string with another string, by matching strings.
**[Substitute](reference/function-replace-substitute.md )** Replaces part of a string with another string, by matching strings.

**[Sum](reference/function-aggregates.md )** - Calculates the sum of a table expression or a set of arguments.
**[Sum](reference/function-aggregates.md )** Calculates the sum of a table expression or a set of arguments.

**[Switch](reference/function-if.md )** - Matches with a set of values and then evaluates a corresponding formula.
**[Switch](reference/function-if.md )** Matches with a set of values and then evaluates a corresponding formula.

## T

**[Text](reference/function-text.md )** - Converts any value and formats a number or date/time value to a string of text.
**[Text](reference/function-text.md )** Converts any value and formats a number or date/time value to a string of text.

**[Trim](reference/function-trim.md )** - Removes extra spaces from the ends and interior of a string of text.
**[Trim](reference/function-trim.md )** Removes extra spaces from the ends and interior of a string of text.

**[Trunc](reference/function-round.md )** - Truncates the number to only the integer portion by removing any decimal portion.
**[Trunc](reference/function-round.md )** Truncates the number to only the integer portion by removing any decimal portion.

**[TrimEnds](reference/function-trim.md )** - Removes extra spaces from the ends of a string of text only.
**[TrimEnds](reference/function-trim.md )** Removes extra spaces from the ends of a string of text only.

## U

**[Upper](reference/function-lower-upper-proper.md )** - Converts letters in a string of text to all uppercase.
**[Upper](reference/function-lower-upper-proper.md )** Converts letters in a string of text to all uppercase.

**[User](reference/function-user.md )** – Returns information about the current user.

**[UTCNow](reference/function-now-today-istoday.md )** - Returns the current date/time value in Coordinated Universal Time (UTC).
**[UTCNow](reference/function-now-today-istoday.md )** Returns the current date/time value in Coordinated Universal Time (UTC).

**[UTCToday](reference/function-now-today-istoday.md )** - Returns the current date-only value in Coordinated Universal Time (UTC).
**[UTCToday](reference/function-now-today-istoday.md )** Returns the current date-only value in Coordinated Universal Time (UTC).

## V

**[Value](reference/function-value.md )** - Converts a string to a number.
**[Value](reference/function-value.md )** Converts a string to a number.

**[Validate](reference/function-validate.md )** – Checks whether the value of a single column or a complete record is valid for a data source.

**[ViewForm](reference/function-form.md )** – Resets a form control for viewing of an existing item.

## W

**[WeekNum](reference/function-weeknum.md )** - Returns the week number of a date/time value.
**[WeekNum](reference/function-weeknum.md )** Returns the week number of a date/time value.

## Y

**[Year](reference/function-datetime-parts.md )** - Retrieves the year portion of a date/time value.
**[Year](reference/function-datetime-parts.md )** Retrieves the year portion of a date/time value.

0 comments on commit f54cc6b

Please sign in to comment.