Forum Discussion
Data Alerts for each row
- 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)
I believe that you can only set alerts on numeric data so it wouldn't work to concatenate all the project names rows together which was my first thought. Glad it worked though!! If I come up with something I'll let you know.
Hi Greg,
do you have already a workaround regarding the data alert with data name (like the project name in this example)?
Thank you in advance.
- RemiAnthonise7 years ago
Helper V
Hi Greg Greg_Deckler , I need some help regarding these data alerts. I've also started a new topic for my issue here.
I've made a measure following your help.
Notification =
VAR myCount = COUNTROWS(FILTER(SickEmployees;([Days sick]>=2)))
RETURN IF(ISBLANK(myCount);"None";myCount)What I think it should do: it counts all rows where 'days sick' >= 2. I get 'none' beceause it's blank. If I change the measure to >=1 it gives me 74. The sum of days sick.
What I expect / want: I want to get a notification when someone is sick for >= 17 days. So the measure should be changed to
VAR myCount = COUNTROWS(FILTER(SickEmployees;([Days sick]>=2)))
RETURN IF(ISBLANK(myCount);"None";myCount). But like I said, this gives me 'none'.You can find the sample file here in my Dropbox.