I'm new to VBA, using Access 2000. I have a database that reads barcodes from a scanner and stores them in a variable as such:
801R554430403 801R554430506 801BL330444033
I'd like to be able to do some IF THEN or CASE SELECT routines on each of the barcodes of same length,
(i.e. If barcode = 15 Then
Else If barcode = 14 Then
Else )
as they are variable length and require different parses to split the substrings into different fields.
Do you know how I can do this the most effective? Thanks.
801R554430403 801R554430506 801BL330444033
I'd like to be able to do some IF THEN or CASE SELECT routines on each of the barcodes of same length,
(i.e. If barcode = 15 Then
Else If barcode = 14 Then
Else )
as they are variable length and require different parses to split the substrings into different fields.
Do you know how I can do this the most effective? Thanks.