C
carl
My records look like this.
Record ID Code Count
1 ABC 2
2 EFG 5
3 HIJ 7
4 KLM 9
5 NOP 10
6 QRS 6
Is ther a way to query the data for a list of items ? For example, if my
list include is:
ABC
EFG
HIJ
Can a query return:
Record ID Code Count
1 ABC 2
2 EFG 5
3 HIJ 7
I need to do this on a large scale - the list would have around 2000 items
so doing it 1 at a time has been taking too long.
Thank you in advance.
Record ID Code Count
1 ABC 2
2 EFG 5
3 HIJ 7
4 KLM 9
5 NOP 10
6 QRS 6
Is ther a way to query the data for a list of items ? For example, if my
list include is:
ABC
EFG
HIJ
Can a query return:
Record ID Code Count
1 ABC 2
2 EFG 5
3 HIJ 7
I need to do this on a large scale - the list would have around 2000 items
so doing it 1 at a time has been taking too long.
Thank you in advance.