I would suggest using ODATA feed from Dataverse to PowerBI as your Refresh will be noticeably faster
1 - PowerBI -> NewSource -> Blank Query
2 - Advanced Editor
3 - Type below (make changes to [ENV_URL] and SCHEMA_PLURAL_NAME as per your data)
let
Source = OData.Feed("[ENV_URL]/api/data/v9.2", null, [Implementation="2.0"]),
tblName = Source{[Name="SCHEMA_PLURAL_NAME",Signature="table"]}[Data]
in
tblName
If there is any issues in getting correct SCHEMA_PLURAL_NAME, then you can alternatively use below and then navigate to table of your requirement:
let
Source = OData.Feed("[ENV_URL]/api/data/v9.2", null, [Implementation="2.0"])
in
Source
[ENV_URL] is of format:
https://NNNNNN.crmN.dynamics.com
Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If this post or my previous reply was useful in other ways, please consider giving it Thumbs Up.