Forum Discussion
Gazi
8 years agoFrequent Visitor
Data Alerts for each row
Hi everyone! I need to create an alert for each row in my dataset, whenever any of them goes below 5. Currently i have 85 rows, i could create 85 visuals for each, but how to handle when ther...
- 8 years ago
Create a measure like this and set a notification for > 0
BelowFive = VAR myCount = COUNTROWS(FILTER(Table,[Column]<5) RETURN IF(ISBLANK(myCount),0,myCount)
Greg_Deckler
Community Champion
8 years agoCreate a measure like this and set a notification for > 0
BelowFive = VAR myCount = COUNTROWS(FILTER(Table,[Column]<5) RETURN IF(ISBLANK(myCount),0,myCount)
Anonymous
6 years agoNot applicable
Not the solution I would have thought of at all, but I have to say this would do the trick nicely. Thanks!