Skip to content

Commit

Permalink
Merge pull request #12829 from MicrosoftDocs/main
Browse files Browse the repository at this point in the history
1/8/2025 PM Publish
  • Loading branch information
Albertyang0 authored Jan 8, 2025
2 parents 0ac5df1 + 944263c commit f9425ca
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ ms.reviewer: ''
ms.service: powerbi
ms.subservice: pbi-collaborate-share
ms.topic: how-to
ms.date: 06/28/2024
ms.date: 12/12/2024
LocalizationGroup: Get started
---
# Export and email a Power BI report with Power Automate
Expand Down Expand Up @@ -61,6 +61,10 @@ In this task, you create a simple flow from scratch. The flow exports a Power BI

`https://app.powerbi.com/groups/workspaceGuid/reports/reportGuid/xxxxxxxxxx`

Something like this:

`https://app.powerbi.com/groups/338cd931-b957-4ba6-a5fa-b0113dab53aa/reports/85ac7583-3bb2-4c2c-a1fa-5a4a875ba88c/ReportSection?ctid=72f988bf-86f1-41af-91ab-2d7cd011db47&experience=power-bi`

12. Optionally, indicate a specific bookmark to display in the **Bookmark Name** field. You can find the bookmark name in the report URL after bookmarkGuid=, as shown in the example. Only *report* bookmarks are supported, not *personal* bookmarks. You can specify other parameters for the Power BI report. Find detailed descriptions of these parameters in the [Export to File for Power BI Reports](/connectors/powerbi/#export-to-file-for-power-bi-reports).

`https://app.powerbi.com/groups/workspaceGuid/reports/reportGuid/ReportSection?bookmarkGuid=xxxxxxxxxx`
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ ms.custom:
ms.service: powerbi
ms.subservice: pbi-reports-dashboards
ms.topic: how-to
ms.date: 06/12/2024
ms.date: 01/08/2025
LocalizationGroup: Connect to data
---

Expand Down Expand Up @@ -203,6 +203,10 @@ This table describes with more detail where this feature is available and the li
1. *FI: Fixed interval*
2. *CD: Change detection*

> [!IMPORTANT]
> *Admin override* can only increase the refresh interval, and can't be used to set it below the minimum interval.

> [!WARNING]
> We have a known issue when connected from Power BI Desktop to Analysis Services or Power BI semantic models and the refresh interval is 30 minutes or more. Visuals in a report page might show an error after 30 minutes.
Expand Down
15 changes: 13 additions & 2 deletions powerbi-docs/developer/projects/projects-overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ Power BI Desktop introduces a new way to author, collaborate, and save your proj

Saving your work as a project has the following benefits:

- **Text editor support** - Item definition files are JSON formatted text files containing semantic model and report metadata. These files are publicly documented and human readable. While project files support simple text editing tools like Notepad, it's better to use a code editor like [Visual Studio Code (VS Code)](https://code.visualstudio.com/), which provides a rich editing experience including intellisense, validation, and Git integration.
- **Text editor support** - Item definition files are formatted text files containing semantic model and report metadata. These files are publicly documented and human readable. While project files support simple text editing tools like Notepad, it's better to use a code editor like [Visual Studio Code (VS Code)](https://code.visualstudio.com/), which provides a rich editing experience including intellisense, validation, and Git integration.

- **Programmatic generation and editing item definitions** - You can create scripts using the popular and easy to use [Tabular Model Scripting Language (TMSL)](/analysis-services/tmsl/tabular-model-scripting-language-tmsl-reference?view=power-bi-premium-current&preserve-view=true) , or create your own custom applications to make changes to your item definitions. Applications can be based on public documentation of the item definition schemas and/or client libraries.
- **Programmatic generation and editing item definitions** - You can programmatically generate and modify item definition text files, enabling batch operations such as updating all report pages visuals or adding a set of measures to each table. For semantic models, you can use the [Tabular Object Model (TOM)](/analysis-services/tom/introduction-to-the-tabular-object-model-tom-in-analysis-services-amo) client library to deserialize the semantic model metadata, make programmatic modifications, and serialize it back to the files.

- **Source control** - Power BI semantic model and report item definitions can be stored in a source control system, like Git. With Git, you can track version history, compare revisions (diff), and revert to previous versions. Source control can also unblock collaboration when using Power BI Desktop by using familiar collaboration mechanisms for resolving conflicts (merge) and reviewing changes (pull requests). To learn more, see [Version control in Git](/devops/develop/git/what-is-version-control).

Expand Down Expand Up @@ -120,6 +120,17 @@ Schema details for the following files aren't documented. During **preview**, ch
- SemanticModel\
- [diagramLayout.json](projects-dataset.md#diagramlayoutjson)

## Deploy to Fabric workspace

When working with Power BI project files, you can deploy your content to a Fabric workspace using the following publishing mechanisms:

- Use [Fabric Git Integration](/fabric/cicd/git-integration/intro-to-git-integration).
- Use [Fabric APIs](/rest/api/fabric/articles/get-started/deploy-project).
- Use [Power BI Desktop publish](/power-bi/create-reports/desktop-upload-desktop-files) option.

> [!NOTE]
> Publishing through [Power BI Desktop publish](/power-bi/create-reports/desktop-upload-desktop-files) uses a temporary PBIX file that is published to the service, similar to saving and publishing a PBIX file. Unlike other PBIP deployment options that only deploy metadata, this publishing method deploys both the metadata and the [local data cache](/power-bi/developer/projects/projects-dataset#pbicacheabf) of the semantic model being edited.
### Model authoring

You can make changes to the semantic model definition by using external tools in two ways:
Expand Down

0 comments on commit f9425ca

Please sign in to comment.