Hi , I have a powerBi integration with PowerApps, there is a patch code which works just fine from the powerApps , but the same does not do anything from powerBi . I am struggling to fix this issue. can someone help
below is the code.
IfError(
ForAll(
Gallery3.AllItems,
Patch(
model_image,
Defaults(model_image),
{
model_nm: Label12.Text,
tag: Label15.Text,
image_url: Label11.Text,
application: "NARS",
image_id: Label10.Text,
train_flag: 0,
audit_create_ts: DateAdd(
Now(),
TimeZoneOffset(Now()),
Minutes
),
create_user_nm: User().Email,
current_flag: true
}
);
),
Notify(
"Something went wrong. Unable to tag the images.",
NotificationType.Error
),
Notify(
CountA(CollectAudits.image_id) & " records inserted successfully850",
NotificationType.Success
)
);