Forum Discussion
Report Template for Planner
- 11 months ago
Hi David_G-R ,
Planner does not offer a direct indicator for premium or basic plans. However, you can differentiate between them by examining the schema: premium plans include fields such as Effort or are represented as projectTask in Graph/Dataverse, whereas basic plans do not have these features.
In Power BI, you can add a calculated column :
PlanType = IF(ISBLANK([Effort]), "Basic", "Premium")
I can see the url is different - planner.cloud.microsoft/webui/plan/ or planner.cloud.microsoft/webui/premiumplan/. But is there a field in one of the tables in the background that has a premium or basic flag? Or a specific field that is consistenly different between the 2, I am trying to find a way to identify one or the other in filters.
- v-sshirivolu11 months agoCommunity Support
Hi David_G-R ,
Planner does not offer a direct indicator for premium or basic plans. However, you can differentiate between them by examining the schema: premium plans include fields such as Effort or are represented as projectTask in Graph/Dataverse, whereas basic plans do not have these features.
In Power BI, you can add a calculated column :
PlanType = IF(ISBLANK([Effort]), "Basic", "Premium")