Re: Power BI or SharePoint List Tailored Notifications
Hi @Anonymous,
I have a suggestion on how to do this:
- Create a calculated column (something like [Deadline Column]-TODAY()) in the SharePoint list
- Have a daily flow go through all the list items (rows),
- Check if the calculated days until deadline is below a threshold
- You could also calculate the days until a deadline in this step
- Send an email to the task-specific person.
This requires that the SharePoint list you have has a task-specific email on each row.
Here's an example Flow with dummy data:

Another more tedious alternative would be utilizing data-driven alerts in PowerBi:
- Create a card visual for each task in your Gantt chart, where you have calculated the certain number of days before a deadline/end date.
- Pin these card visuals to a dashboard.
- Create alerts for these card visuals with the threshold you specify, e.g. days until deadline <= 5 for the alert to set.
- Make this alert a trigger in Flow and send an email to the task-specific person.
Here are some visual aids for the Power BI (from an example I've made with overbooking):
Create alert for a Power BI dashboard card visual
Specify alert threshold
Create flow with Power BI data-driven alert trigger
Specify who to send the email to when a alert is set
The trouble is you have to make separate alerts and flows for each task-specific person.
.
Regards,
T