Skip to content

iif implementation doesn't support 1 or 2 parameter #14234

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/pipelines/process/expressions.md
Original file line number Diff line number Diff line change
Expand Up @@ -332,7 +332,7 @@ Counters are scoped to a pipeline. In other words, its value is incremented for
::: moniker range=">= azure-devops"
### iif
* Returns the second parameter if the first parameter evaluates to `True`, and the third parameter otherwise
* Min parameters: 1. Max parameters: 3
* Min parameters: 3. Max parameters: 3
* The first parameter must be a condition
* Example: `iif(eq(variables['Build.Reason'], 'PullRequest'), 'ManagedDevOpsPool', 'Azure Pipelines')` returns 'ManagedDevOpsPool' when the pipeline runs in response to a PR.
::: moniker-end
Expand Down