diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md index fb49faa788..c9787e417b 100644 --- a/.github/pull_request_template.md +++ b/.github/pull_request_template.md @@ -6,8 +6,8 @@ Please add a brief comment outlining the purpose of this PR. Add links to any re 1. **Acrolinx:** Make sure your Acrolinx score is **at least 80** (higher is better) and with **0** spelling issues. 1. **Successful build**: Review the build status to make sure **all files are green** (Succeeded) and there are no errors, warnings, or suggestions. -1. **Preview the pages:**: Click each **Preview URL** link, scan the entire page looking for formatting issues, in particular the parts you edited. -1. **Check the Table of Contents:** If you are adding a new markdown file, make sure it is linked from the table of contents. +1. **Preview the pages**: Click each **Preview URL** link, scan the entire page looking for formatting issues, in particular the parts you edited. +1. **Check the Table of Contents:** If you're adding a new markdown file, make sure it is linked from the table of contents. 1. **Sign off**: Once the PR is finalized, add a comment with `#sign-off` . If you need to cancel the sign-off, add a comment with `#hold-off`. **NOTE**: *Signing off means the document can be published at any time.* @@ -17,4 +17,4 @@ Please add a brief comment outlining the purpose of this PR. Add links to any re - All PRs to this repository are reviewed and merged by a human. Automatic merge is disabled on this repository for PRs, even with the qualifies-for-auto-merge label. - Once all feedback on the PR is addressed, the PR will be merged into the main branch. -[Learn more about how to contribute](https://review.learn.microsoft.com/en-us/help/platform/?branch=main). +[Learn more about how to contribute](https://review.learn.microsoft.com/en-us/help/platform/?branch=main) diff --git a/data-explorer/kusto/query/count-aggregation-function.md b/data-explorer/kusto/query/count-aggregation-function.md index d2ea0c1710..5bf144139c 100644 --- a/data-explorer/kusto/query/count-aggregation-function.md +++ b/data-explorer/kusto/query/count-aggregation-function.md @@ -10,10 +10,8 @@ monikerRange: "microsoft-fabric || azure-data-explorer || azure-monitor || micro > [!INCLUDE [applies](../includes/applies-to-version/applies.md)] [!INCLUDE [fabric](../includes/applies-to-version/fabric.md)] [!INCLUDE [azure-data-explorer](../includes/applies-to-version/azure-data-explorer.md)] [!INCLUDE [monitor](../includes/applies-to-version/monitor.md)] [!INCLUDE [sentinel](../includes/applies-to-version/sentinel.md)] - Counts the number of records per summarization group, or total if summarization is done without grouping. -[!INCLUDE [ignore-nulls](../includes/ignore-nulls.md)] ::: moniker range="microsoft-fabric || azure-data-explorer || azure-monitor || microsoft-sentinel" To only count records for which a predicate returns `true`, use [countif()](countif-aggregation-function.md). ::: moniker-end diff --git a/data-explorer/kusto/query/count-distinct-aggregation-function.md b/data-explorer/kusto/query/count-distinct-aggregation-function.md index e5a84fb42f..6b938d827e 100644 --- a/data-explorer/kusto/query/count-distinct-aggregation-function.md +++ b/data-explorer/kusto/query/count-distinct-aggregation-function.md @@ -11,8 +11,6 @@ ms.date: 08/11/2024 Counts unique values specified by the scalar expression per summary group, or the total number of unique values if the summary group is omitted. -[!INCLUDE [ignore-nulls](../includes/ignore-nulls.md)] - [!INCLUDE [data-explorer-agg-function-summarize-note](../includes/agg-function-summarize-note.md)] If you only need an estimation of unique values count, we recommend using the less resource-consuming [`dcount`](dcount-aggregation-function.md) aggregation function. diff --git a/data-explorer/kusto/query/countif-aggregation-function.md b/data-explorer/kusto/query/countif-aggregation-function.md index 15ec3a008c..28d4673c79 100644 --- a/data-explorer/kusto/query/countif-aggregation-function.md +++ b/data-explorer/kusto/query/countif-aggregation-function.md @@ -11,8 +11,6 @@ ms.date: 08/11/2024 Counts the rows in which *predicate* evaluates to `true`. -[!INCLUDE [ignore-nulls](../includes/ignore-nulls.md)] - [!INCLUDE [data-explorer-agg-function-summarize-note](../includes/agg-function-summarize-note.md)] ## Syntax diff --git a/data-explorer/kusto/query/scalar-data-types/null-values.md b/data-explorer/kusto/query/scalar-data-types/null-values.md index e03902963a..a2b294b392 100644 --- a/data-explorer/kusto/query/scalar-data-types/null-values.md +++ b/data-explorer/kusto/query/scalar-data-types/null-values.md @@ -75,9 +75,6 @@ datatable(val:int)[5, int(null)] When applying the following operators to entities that include null values, the null values are ignored and don't factor into the calculation: -* [count()](../count-aggregation-function.md) -* [count_distinct()](../count-distinct-aggregation-function.md) -* [countif()](../countif-aggregation-function.md) * [dcount()](../dcount-aggregation-function.md) * [dcountif()](../dcountif-aggregation-function.md) * [make_bag()](../make-bag-aggregation-function.md)