This is best Fabric, Power BI, SQL and AI community event. How do we know? The last event sold out! Save €200 with code FABCMTY200.
Register nowA new Data Days event is coming soon! This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. Don't miss out.
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 example, if I have 200 coca-cola and the minimum stock is 300, I will receive an alert.
Now the problem here is that I have two columns which contains the actual stock and the minimum stock and I don't know how to make alert based on the difference of the two columns. Each product have his own minimum stock.
For example, you can see the table below :
| Product Code | Actual Stock | Minimum Stock |
| 30000222 | 1000 | 1200 |
| 3002373 | 2000 | 1000 |
Solved! Go to Solution.
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.
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.
Can you create a calculation in your model that subtracts the two fields?
Hello,
Yeah I can do that !
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 11 | |
| 10 | |
| 7 | |
| 7 | |
| 7 |
| User | Count |
|---|---|
| 28 | |
| 26 | |
| 22 | |
| 22 | |
| 19 |