Is there a way to make a query that returns data appended into a new field? I have data rows with item1, item2, item3 etc as separate fields. All of these fields contain the same kind of data, just in different positions. I want the query results (not a new table) to give me a count of all those items in one single field. I start with this
ID item1 item2 item3 item4 item5
1… 475 …. 01004
2… 475 …. 01004
3… 18 …. 00026 …. 00565 …. 00565
and want to end up with this
Item… count
475 … 2
18 … 1
1004 … 2
26 … 1
565 … 2
Is there a reasonable way to do this?
Thanks so much.