What I have is a dataset with a field named UPDATE. in this field, there are many differant values populated. Here's an example (imagine each line is an entry in the dataset table):
UPDATE
DESCRIP ; E_MAIL ; TEL_NR ; WEBSITE
E_MAIL ; WEBSITE
DESCRIP ; WEBSITE
E_MAIL ; TEL_NR ; WEBSITE
DESCRIP
DESCRIP ; TEL_NR
etc.. Please not that these multiple values (like DESCRUP ; E_MAIL) are contained in a single attribute.
So what I want as a result is to calculate how many times a set of specified values are present:
UPDATE COUNT
DESCRIP 4
E_MAIL 3
TEL_NR 3
WEBSITE 4
Currently my writer is an xls table, but I've had very little luck in achieving this output.
Any kind of help would be fantastic.