I've defined a table as cards (see picture here: https://www.flickr.com/photos/113328996@N07/)
I now want a create some VBA code which does the following:
- Loop through the whole table
- Count the times it 'hits' "A".
I wantto do something like this
sub countCards
//Open sheets: "sheet1"
dim countA as integer
countA = 0
//foreach each row in table "cards"
if (cells is "A")
countA = countA + 1
end if
But I can't find the syntax to get this working. Can anybody help me?
Dear regards,
Marc