Hi all, I need to create an alert based on a success rate less than a specific value. My data is as follows: store = "store1" result= "success" store = "store1" result= "success" store = "store1" result= "success-with-warnings" store = "store1" result= "failed" store = "store2" result= "success-with-warnings" store = "store2" result= "failed" store = "store3" result= "success-with-warnings" store = "store3" result= "success" I need to calculate the success rate based on each store. Result = "success" or "success-with-warnings" are considered a success, all other result values are considered failed. For example, using the above data, the search result should be something like this: store1 %75 success store2 %50 success store3 %100 success Then I need to use those values to create an alert, that will be triggered daily to check stores with a success rate is less than 70%. So in this case, I will get an alert for store2.
... View more