Forum Discussion
Data Alert based on Table Visual column
- Anonymous1 year ago
Hi powerbidev123 ,
Based on the description, try creating a measure.
Days_Difference_Alert = IF( MAX(Table1[Days_Difference]) < 30, 1, 0 )Then, place the measure in a card visual and publish the report to the service.
What’s more, set up alerts on the card visual.
Besides, you can also view the following documents to learn more information.
Set alerts on Power BI reports (public preview) - Power BI | Microsoft Learn
Introduction to Data Activator - Microsoft Fabric | Microsoft Learn
Best Regards,
Wisdom Wu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
lbendlin I am not relying on a single numerical value . I want to basically send an alert if any of the values becomes less than 30 then send the details of the customerid,email via an email or just display those records in table visual
- lbendlin1 year agoSuper User
As Anonymous stated - create a measure.