MS Task Planner integrate with Powerapps

HCY 1 Reputation point
2021-04-05T07:45:50.753+00:00

Hi,

After using the PowerApps inspection template which help me integrate with MS Task Planner, my task due date always remain as today. I try to replace the today() with something else but the due date in Task Planner still display as today. Can you help?
If(
gblselectedareainspection,
Set(
Taskid,
Planner.CreateTaskV3(
gblPlannerGroupId,
gblPlannerPlanId,
LookUp('Area Inspection Locations', 'Area Inspection Location' = gblTempLocID).Name, //gblSelectedLocation.Name,
{
bucketId: locPlannerBucketForTask,
dueDateTime: Today(), //datTaskDate.Value,
assignments: If(CountRows(colTaskAssignments)>0,Concat(
colTaskAssignments,
appEmailAddress,
";"
))
}
)
),

Microsoft Graph
Microsoft Graph
A Microsoft programmability model that exposes REST APIs and client libraries to access data on Microsoft 365 services.
10,670 questions
{count} votes

1 answer

Sort by: Most helpful
  1. HCY 1 Reputation point
    2021-04-08T15:02:46.547+00:00

    Thanks. The problem solved!

    0 comments No comments