Hi there!
I have a .txt data file with a field named Country at a fixed position. I try to get a report of all diverent occurrences within this field and the amount of occurrences per diverent "“Country”.
I loaded all the lines in the data file and placed all the country fields in an array (in Dutch):
[“Nederland”, “Nederland”, “Nederland”, “Nederland”, “Duitsland”, “Nederland”, “Nederland”, “Nederland”, “Belgie”, “Nederland”, “Canada”, “Nederland”, “Spanje”, “Nederland”, “Duitsland”, “Nederland”, “Nederland”, “Frankrijk”, “Nederland”]
Can anybody help me to find a way to convert this to the needed report looking something like this:
Nederland: 13
Duitsland: 2
Belgie: 1
Canada: 1
Spanje: 1
Frankrijk: 1
Thanks in advance!