我所做的:
预期: PowerBI表应该刷新
我的问题是:通过按钮选择事件,我使用'PowerBIIntegration.Refresh();‘刷新PowerBI表,有时成功刷新,但有时表不刷新。
我的按钮OnSelect事件:
If(
Delete.Run(
param1,
param2
),
Notify(
"Records updated successfully ",
NotificationType.Success,
1500
),
Notify(
"Records not updated",
NotificationType.Error
)
);
PowerBIIntegration.Refresh();发布于 2021-06-07 07:46:29
PowerBIIntegration()的Refresh()函数在创建可视化时被添加到PowerApps中。因此,它将不可用于现有的PowerApps。
基于以下答案,您不能使用刷新函数,因为您使用的是现有的应用程序。只有在从PowerBI中从头开始创建新应用程序时,刷新函数才能工作。
https://stackoverflow.com/questions/65593161
复制相似问题