Hi all, We woulde like to count the number of days a certain constrain is met. The table has three columns which specify the primary key. Example: INPUT: Date | Category 1 | Category 2 | Measure ------------------------------------------------------------ 01-01-2016 | Dog | Orange | 10 01-01-2016 | Cat | Apple | 12 01-01-2016 | Dog | Apple | 7 02-01-2016 | Cat | Orange | 13 02-01-2016 | Dog | Orange | 6 02-01-2016 | Cat | Apple | 19 03-01-2016 | Cat | Apple | 5 03-01-2016 | Dog | Orange | 10 03-01-2016 | Dog | Apple | 11 Constrain: the number of days per year the sum of the measure is higher then 31. For 01-01-2016 the sum is equal to 29 (=10+12+7), for 02-01-2016 the sum is equal to 38 (=13+6+9) and for 03-01-2016 is equal to 26 (=5+10+11). So only day 02-01-2016 is more than 30 and met the constrain. And as an output I would like to see the number of days which met the condition which is is in this example. Do you have any idea how we can calculate this in SAS VA. Thank you!
... View more