Create alerts triggered by a table column value

image

Hello Experts,

I have a table visual in which contract details are displaying(Image Attached)
Client is asking to set a notification if Contract is going to expire this month. Is there any way we can achieve this in power BI.

Thanks in Advance

@Shoeb First create a column that will help filter those contracts that are expiring in this month.

Expiry Status Trigger = 
INT ( Alerts[End Date] <= EOMONTH ( Alerts[Start Date], 0 ) )

Then in Power Automate you can get the rows that have 1 and send emails

4 Likes

Thanks Antriksh. I will try this