Forum Discussion
eric98
3 years agoHelper II
Using Alert in Power BI Service
Hello, I'm trying to manage alerts so that I can watch the inventory of the products of my company. The purpose of this is to be notify if the stock of a product is under the minimum stock. For e...
- 3 years ago
Hi eric98 ,
According to your description, here is my solution.
Create a column.
Column = IF ( 'Table'[Actual Stock] < 'Table'[Minimum Stock], 1, BLANK () )Put the column into a card.
Set to trigger an alarm when the sum of column is greater than 0. And then you will get the notification.
Best Regards,
Community Support Team _ xiaosunIf this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
v-xiaosun-msft
3 years agoCommunity Support
Hi eric98 ,
According to your description, here is my solution.
Create a column.
Column =
IF ( 'Table'[Actual Stock] < 'Table'[Minimum Stock], 1, BLANK () )
Put the column into a card.
Set to trigger an alarm when the sum of column is greater than 0. And then you will get the notification.
Best Regards,
Community Support Team _ xiaosun
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.