Forum Discussion
Union Power BI Service Datasources
- 1 year ago
Hi nbarsley Could you follow these please
Publish both stale (daily) and current (30-minute) datasets to the same Power BI workspace.
In Power BI Desktop, use Get Data > Power BI Datasets to connect to both datasets. Build a composite model by querying both.
Create a calculated table using DAX:
CombinedData = UNION(Dataset1[TableName], Dataset2[TableName])Use the CombinedData table to build your report visuals.
Publish the combined model to the Power BI Service for dynamic updates.
If this post helped please do give a kudos and accept this as a solution
Thanks In Adavnce - 1 year ago
Have tried implementing Incremental refresh ?
https://learn.microsoft.com/en-us/power-bi/connect-data/incremental-refresh-overview
This will help achieving your requirement
Hi nbarsley Could you follow these please
Publish both stale (daily) and current (30-minute) datasets to the same Power BI workspace.
In Power BI Desktop, use Get Data > Power BI Datasets to connect to both datasets. Build a composite model by querying both.
Create a calculated table using DAX:
CombinedData = UNION(Dataset1[TableName], Dataset2[TableName])Use the CombinedData table to build your report visuals.
Publish the combined model to the Power BI Service for dynamic updates.
If this post helped please do give a kudos and accept this as a solution
Thanks In Adavnce
Thanks,
I did try this earlier but received this error message:
Something went wrong
The resultset of a query to external data source has exceeded the maximum allowed size of '1000000' rows.