Forum Discussion

SK02's avatar
SK02
Regular Visitor
2 years ago
Solved

How to get custom fields from Project Web app into Power BI

In Power BI desktop, I have connected to Project Web app (PWA Project) through OData feed connector, I got columns which are their in Project Online but I couldn't get the custom field columns. Is t...
  • rajendraongole1's avatar
    2 years ago

    To locate the entity that contains custom fields, navigate through the options available. Custom fields are often found within tables such as Tasks, Projects, or Assignments.

     

    check or you can also try with rest api from power query editor

    or

    Create a custom query in Power BI:

    Go to Home > Get Data > Blank Query.
    In the Advanced Editor, write a query to fetch data using the Project Online REST API.
    Example REST API query: https://<yourtenant>.sharepoint.com/sites/pwa/_api/ProjectServer/Projects?$select=Id,Name,Custom_x0020_Field1,Custom_x0020_Field2.
    Authenticate if required (usually OAuth or other SharePoint authentication methods).

    Transform the data as needed once it is loaded into Power BI.