Forum Discussion
MS Project Online template for Power Bi Changes
- Anonymous1 year ago
Thanks. I found the answer by myself 🙂 What is call in the MS Project Online Frontend "Changes" can be found in the table msdyn_projecthistory !
Thanks. I found the answer by myself 🙂 What is call in the MS Project Online Frontend "Changes" can be found in the table msdyn_projecthistory !
Were you actually able to connect to the history table in Power BI? When I tried I believe the "elastic" type tables (which the project history table was, iirc, but the rest were not) wouldn't show up and gave an error when I navigated by schema name in PBI. But if you found a way to make it work I'd love to hear 🙂
Or wait Project Online. Proj Online is SharePoint, yes? Maybe I'm in the wrong thread, I was looking for the Planner for the Web / Dataverse connection for history.
- Anonymous1 year agoNot applicable
Hi yes you can find this data in the table msdyn_projecthistory, but it is a bit cryptic. Because e.g. if the user check a milestone in the ToDo List you can only find IDs there not the caption.
You can use this M scipt...
let
Source = Cds.Entities(#"Environment URL", [ReorderColumns=null, UseFormattedValue=null]),
entities = Source{[Group="entities"]}[Data],
msdyn_projecthistory = entities{[EntitySetName="msdyn_projecthistory"]}[Data]
in
msdyn_projecthistory