I am not sure how to go about creating a custom field to count instances given a condition.
I have a field, ID
, that exists in two formats:
A#####
B#####
I would like to create two columns (one for A
and one for B
) and count instances by month. Something like COUNTIF ID STARTS WITH A
for the first column resulting in something like below. Right now I can only create a table with the total count.
+-------+------+------+
| Month | ID A | ID B |
+-------+------+------+
| Jan | 100 | 10 |
+-------+------+------+
| Feb | 130 | 13 |
+-------+------+------+
| Mar | 90 | 12 |
+-------+------+------+
Define ID A as...
...and set the Default aggregation property to Total. Do the same for ID B.