Back
If schedule refresh is not working then manual refresh will also not work
We should try a power shell script to call the REST API and run the script below
Import-Module MicrosoftPowerBIMgmt Import-Module MicrosoftPowerBIMgmt.Profile $password = "xxxxxxxxxxxxxxxxxxxxx" | ConvertTo-SecureString -asPlainText -Force $username = "[email protected]" $credential = New-Object System.Management.Automation.PSCredential($username, $password) Connect-PowerBIServiceAccount -Credential $credential Invoke-PowerBIRestMethod -Url 'groups/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/datasets/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/refreshes' -Method Post Disconnect-PowerBIServiceAccount
I recommend this Power BI course by Intellipaat to learn Power BI.
30.9k questions
32.9k answers
500 comments
665 users