Skip to content

Commit

Permalink
Merge pull request #13007 from MicrosoftDocs/main
Browse files Browse the repository at this point in the history
2/24/2025 PM Publish
  • Loading branch information
Albertyang0 authored Feb 24, 2025
2 parents 759266f + 40edc8a commit 7376b1c
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 6 deletions.
4 changes: 2 additions & 2 deletions powerbi-docs/connect-data/refresh-data.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ ms.reviewer: kayu
ms.service: powerbi
ms.subservice: pbi-data-sources
ms.topic: how-to
ms.date: 02/21/2025
ms.date: 02/24/2025
LocalizationGroup: Data refresh
#customer intent: As a Power BI user, I want to understand data refresh features and dependencies in Power BI so that I can ensure the data in my reports and dashboards is accurate and up to date.
---
Expand Down Expand Up @@ -442,7 +442,7 @@ response = client.get(f"/v1.0/myorg/groups/{workspaceId}/datasets/{semanticModel
refreshHistory = pd.json_normalize(response.json()['value'])
refreshHistory["refreshLink"] = refreshHistory.apply(lambda x:f"https://msit.powerbi.com/groups/{workspaceId}/datasets/{semanticModelId}/refreshdetails/{x['requestId']}", axis=1)
refreshHistory["refreshLink"] = refreshHistory.apply(lambda x:f"https://app.powerbi.com/groups/{workspaceId}/datasets/{semanticModelId}/refreshdetails/{x['requestId']}", axis=1)
displayHTML(refreshHistory[["requestId", "refreshLink"]].to_html(render_links=True, escape=False))
```
Expand Down
3 changes: 3 additions & 0 deletions powerbi-docs/developer/embedded/register-app.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@ ms.custom: intro-overview

This article shows you how to start using Power BI Embedded to share your reports with others. To use Power BI embedded analytics, you need to register a Microsoft Entra application in Azure. The Microsoft Entra app establishes permissions for Power BI REST resources, and allows access to the [Power BI REST APIs](/rest/api/power-bi/).

> [!TIP]
> You can try out Power BI Embedded without registering an app. Check out the [Power BI embedded analytics playground](./power-bi-playground.md) to get started developing and to keep up with all the new Power BI Embedded features and updates.
## Prerequisite

To set up a Power BI embedded analytics environment, you need one of the following:
Expand Down
11 changes: 7 additions & 4 deletions powerbi-docs/developer/visuals/dataview-mappings.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,15 +72,18 @@ You can also set multiple conditions for a data role. In that case, the data is

```json
"conditions": [
{ "category": { "min": 1, "max": 1 }, "measure": { "min": 2, "max": 2 } },
{ "category": { "min": 2, "max": 2 }, "measure": { "min": 1, "max": 1 } }
{ "category": { "min": 1, "max": 1 }, "measure": { "min": 0, "max": 2 } },
{ "category": { "min": 2, "max": 2 }, "measure": { "min": 0, "max": 1 } }
]
```

In the previous example, one of the following two conditions is required:

* Exactly one category field and exactly two measures
* Exactly two categories and exactly one measure
* Exactly one category field and no more than two measures
* Exactly two categories and no more than one measure field

> [!NOTE]
> Only one data role can have a minimun value of ≥ 1 per condition.
## Single data mapping

Expand Down

0 comments on commit 7376b1c

Please sign in to comment.