From 0a016f6875b4e44bae0936e3ca16e9c5568334cf Mon Sep 17 00:00:00 2001 From: Jeroen ter Heerdt Date: Thu, 22 Aug 2024 15:22:26 -0700 Subject: [PATCH 1/4] fighting with no-loc again --- .../desktop-visual-calculations-overview.md | 24 +++++++++---------- 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/powerbi-docs/transform-model/desktop-visual-calculations-overview.md b/powerbi-docs/transform-model/desktop-visual-calculations-overview.md index c9301cc7dd..36acfcfd09 100644 --- a/powerbi-docs/transform-model/desktop-visual-calculations-overview.md +++ b/powerbi-docs/transform-model/desktop-visual-calculations-overview.md @@ -160,18 +160,18 @@ Visual calculations also introduce a set of functions specific to visual calcula | Function | Description | Example | Shortcut to | | --- | --- | --- | --- | -| [COLLAPSE](/dax/collapse-function-dax) | Calculation is evaluated at a higher level of the axis. | `Percent of parent = DIVIDE([Sales Amount], COLLAPSE([Sales Amount], ROWS))` | N/A | -| [COLLAPSEALL](/dax/collapseall-function-dax) | Calculation is evaluated at the total level of the axis. | `Percent of grand total = DIVIDE([Sales Amount], COLLAPSEALL([Sales Amount], ROWS))` | N/A | -| [EXPAND](/dax/expand-function-dax) | Calculation is evaluated at a lower level of the axis. | `Average of children = EXPAND(AVERAGE([Sales Amount]), ROWS)` | N/A | -| [EXPANDALL](/dax/expandall-function-dax) | Calculation is evaluated at the leaf level of the axis. | `Average of leaf level = EXPANDALL(AVERAGE([Sales Amount]), ROWS)` | N/A | -| [FIRST](/dax/first-function-dax) | Refers to the first row of an axis. | `ProfitVSFirst = [Profit] – FIRST([Profit])` | [INDEX(1)](/dax/index-function-dax) | -| [ISATLEVEL](/dax/isatlevel-function-dax) | Reports whether a specified column is present at the current level. | `IsFiscalYearAtLevel = ISATLEVEL([Fiscal Year])` | N/A | -| [LAST](/dax/last-function-dax) | Refers to the last row of an axis. | `ProfitVSLast = [Profit] – LAST([Profit])` | [INDEX(-1)](/dax/index-function-dax) | -| [MOVINGAVERAGE](/dax/movingaverage-function-dax) | Adds a moving average on an axis. | `MovingAverageSales = MOVINGAVERAGE([Sales Amount], 2)` | [WINDOW](/dax/window-function-dax) | -| [NEXT](/dax/next-function-dax) | Refers to a next row of an axis. | `ProfitVSNext = [Profit] – NEXT([Profit])` | [OFFSET(1)](/dax/offset-function-dax) | -| [PREVIOUS](/dax/previous-function-dax) | Refers to a previous row of an axis. | `ProfitVSPrevious = [Profit] – PREVIOUS([Profit])` | [OFFSET(-1)](/dax/offset-function-dax) | -| [RANGE](/dax/range-function-dax) | Refers to a slice of rows of an axis. | `AverageSales = AVERAGEX(RANGE(1), [Sales Amount])` | [WINDOW](/dax/window-function-dax) | -| [RUNNINGSUM](/dax/runningsum-function-dax) | Adds a running sum on an axis. | `RunningSumSales = RUNNINGSUM([Sales Amount])` | [WINDOW](/dax/window-function-dax) | +| [COLLAPSE](/dax/collapse-function-dax) | Calculation is evaluated at a higher level of the axis. | Percent of parent = DIVIDE([Sales Amount], COLLAPSE([Sales Amount], ROWS)) | N/A | +| [COLLAPSEALL](/dax/collapseall-function-dax) | Calculation is evaluated at the total level of the axis. | Percent of grand total = DIVIDE([Sales Amount], COLLAPSEALL([Sales Amount], ROWS)) | N/A | +| [EXPAND](/dax/expand-function-dax) | Calculation is evaluated at a lower level of the axis. | Average of children = EXPAND(AVERAGE([Sales Amount]), ROWS) | N/A | +| [EXPANDALL](/dax/expandall-function-dax) | Calculation is evaluated at the leaf level of the axis. | Average of leaf level = EXPANDALL(AVERAGE([Sales Amount]), ROWS) | N/A | +| [FIRST](/dax/first-function-dax) | Refers to the first row of an axis. | ProfitVSFirst = [Profit] – FIRST([Profit]) | [INDEX(1)](/dax/index-function-dax) | +| [ISATLEVEL](/dax/isatlevel-function-dax) | Reports whether a specified column is present at the current level. | IsFiscalYearAtLevel = ISATLEVEL([Fiscal Year]) | N/A | +| [LAST](/dax/last-function-dax) | Refers to the last row of an axis. | ProfitVSLast = [Profit] – LAST([Profit]) | [INDEX(-1)](/dax/index-function-dax) | +| [MOVINGAVERAGE](/dax/movingaverage-function-dax) | Adds a moving average on an axis. | MovingAverageSales = MOVINGAVERAGE([Sales Amount], 2) | [WINDOW](/dax/window-function-dax) | +| [NEXT](/dax/next-function-dax) | Refers to a next row of an axis. | ProfitVSNext = [Profit] – NEXT([Profit]) | [OFFSET(1)](/dax/offset-function-dax) | +| [PREVIOUS](/dax/previous-function-dax) | Refers to a previous row of an axis. | ProfitVSPrevious = [Profit] – PREVIOUS([Profit]) | [OFFSET(-1)](/dax/offset-function-dax) | +| [RANGE](/dax/range-function-dax) | Refers to a slice of rows of an axis. | AverageSales = AVERAGEX(RANGE(1), [Sales Amount]) | [WINDOW](/dax/window-function-dax) | +| [RUNNINGSUM](/dax/runningsum-function-dax) | Adds a running sum on an axis. | RunningSumSales = RUNNINGSUM([Sales Amount]) | [WINDOW](/dax/window-function-dax) | ## Formatting visual calculations From aa550ab0f651fdc3ed8ec1552c54e28a0e2c37f2 Mon Sep 17 00:00:00 2001 From: Zoe Douglas <102261521+DataZoeMS@users.noreply.github.com> Date: Thu, 22 Aug 2024 16:56:55 -0700 Subject: [PATCH 2/4] Update multiple-language-translation.md --- powerbi-docs/guidance/multiple-language-translation.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/powerbi-docs/guidance/multiple-language-translation.md b/powerbi-docs/guidance/multiple-language-translation.md index 67cefa2378..011fb848fd 100644 --- a/powerbi-docs/guidance/multiple-language-translation.md +++ b/powerbi-docs/guidance/multiple-language-translation.md @@ -48,8 +48,6 @@ In addition to the **Caption** property, which tracks an object's display name, When you begin designing a semantic model that uses metadata translation, you can assume that you always need translations for the **Caption** property. If you require support for metadata translation for report authors who create and edit reports in the Power BI service, you also need to provide metadata translations for the **Description** and **DisplayFolder** properties. -Power BI reports and semantic models that support metadata translation can only run in workspaces that are associated with a dedicated capacity created using Power BI Premium or the Power BI Embedded Service. Multiple-language reports don't load correctly when launched from a workspace in the shared capacity. If you're working in a Power BI workspace that doesn't display a diamond that indicates a Premium workspace, multiple-language reports might not work as expected. - Power BI support for metadata translations only applies to semantic models. Power BI Desktop and the Power BI service don't support storing or loading translations for text values stored as part of the report layout. :::image type="content" source="./media/multiple-language-translation/pbix-file-structure.png" alt-text="Diagram shows the report layout, which doesn't support localization, next to the semantic model definition, which supports localization."::: From fb47a9b97312103f70292f80d94ca9fb3f95334a Mon Sep 17 00:00:00 2001 From: Maggie Sparkman <12401230+maggiesMSFT@users.noreply.github.com> Date: Fri, 23 Aug 2024 11:20:37 -0700 Subject: [PATCH 3/4] Update TOC.yml delete (preview) --- powerbi-docs/collaborate-share/TOC.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/powerbi-docs/collaborate-share/TOC.yml b/powerbi-docs/collaborate-share/TOC.yml index a3a40ccaf8..9ab122b3be 100644 --- a/powerbi-docs/collaborate-share/TOC.yml +++ b/powerbi-docs/collaborate-share/TOC.yml @@ -27,9 +27,9 @@ href: service-troubleshoot-sharing.md - name: "Subscribe to reports and dashboards" href: end-user-subscribe.md - - name: "Create per recipient subscriptions for reports (preview)" + - name: "Create per recipient subscriptions for reports" href: power-bi-dynamic-report-subscriptions.md - - name: "Create per recipient subscriptions for paginated reports (preview)" + - name: "Create per recipient subscriptions for paginated reports" href: dynamic-subscriptions.md - name: "Troubleshoot creating and using subscriptions" href: service-troubleshoot-subscribe.yml From 712e56d1063ca6db3bf9fe93351928bf15ff1d30 Mon Sep 17 00:00:00 2001 From: Maggie Sparkman <12401230+maggiesMSFT@users.noreply.github.com> Date: Fri, 23 Aug 2024 11:27:57 -0700 Subject: [PATCH 4/4] Update power-bi-dynamic-report-subscriptions.md update date by 1 day --- .../collaborate-share/power-bi-dynamic-report-subscriptions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/powerbi-docs/collaborate-share/power-bi-dynamic-report-subscriptions.md b/powerbi-docs/collaborate-share/power-bi-dynamic-report-subscriptions.md index b4ccf87187..fae57273c4 100644 --- a/powerbi-docs/collaborate-share/power-bi-dynamic-report-subscriptions.md +++ b/powerbi-docs/collaborate-share/power-bi-dynamic-report-subscriptions.md @@ -8,7 +8,7 @@ featuredvideoid: ms.service: powerbi ms.subservice: pbi-explore ms.topic: how-to -ms.date: 01/08/2024 +ms.date: 01/09/2024 ms.custom: retail analysis sample LocalizationGroup: Common tasks ---