diff --git a/powerbi-docs/connect-data/refresh-data.md b/powerbi-docs/connect-data/refresh-data.md index 4498a19fb4..ccf3b515c0 100644 --- a/powerbi-docs/connect-data/refresh-data.md +++ b/powerbi-docs/connect-data/refresh-data.md @@ -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. --- @@ -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)) ``` diff --git a/powerbi-docs/developer/embedded/register-app.md b/powerbi-docs/developer/embedded/register-app.md index 412e93cc8f..8a595dcbc4 100644 --- a/powerbi-docs/developer/embedded/register-app.md +++ b/powerbi-docs/developer/embedded/register-app.md @@ -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: diff --git a/powerbi-docs/developer/visuals/dataview-mappings.md b/powerbi-docs/developer/visuals/dataview-mappings.md index fcc0d2ac9a..488a49b5d2 100644 --- a/powerbi-docs/developer/visuals/dataview-mappings.md +++ b/powerbi-docs/developer/visuals/dataview-mappings.md @@ -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