Forum Discussion

Gazi's avatar
Gazi
Frequent Visitor
8 years ago
Solved

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...
  • Greg_Deckler's avatar
    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)