Snuggle Walrus
Member
- Local time
- Today, 02:39
- Joined
- May 14, 2020
- Messages
- 32
Good evening all!
I hope this is ok to post, I've gotten a little stuck on my project. Basically, I'm setting up a barcode scanner for goods in and goods out project. I'm working on logging serial numbers for product allocation, so that when I scan a barcode it will run a few checks first just to make sure the product matches what's been scanned at goods in or worst case scenario if its never been booked in.
What I'm currently trying to do revolves around the goods out process where I want to allocate a product. All I'm doing is scanning the serial number and then running some VBA to see if that Serial already exists in the serial table. I have a variable called "SerialScan" that just takes the value of what the barcode scanner puts into the datasheet textbox this variant is stored as a String. Next up I have a Variant called "SerialIDScanSearch" (I know not the best naming convention). Now this is a Dlookup..
However, I get a type mismatch ...
"Run-Time Error '3464: Data type mismatch in criteria expression"
Criteria in the expression so I've tried a few different things, I've checked my tables to see what serial number is being stored as its short text as can contain numbers and characters. However I cant seem to work out how to get around this error at all. Is it the datatype on my first variable SerialScan? I basically want to use SerialIDScanSearch to pull the primary key which is an auto number so I can use this elsewhere but also see if this returns a Null value so I have the option of adding a line into the serial number table as a last resort (this code is done and appears to be working just fine, but I cant get 'SerialIDScanSearch' to actually store a value at all as I keep getting the RunTime Error.
Any advice would be greatly appreciated, sorry if i missed anything important to assist with this error please let me know and I'll happily share it. Currently just looks like so...
SerialID in the table itself is an Autonumber (long) and Serial Number is stored as Short Text within the table.
Thankyou everyone have a great evening!
I hope this is ok to post, I've gotten a little stuck on my project. Basically, I'm setting up a barcode scanner for goods in and goods out project. I'm working on logging serial numbers for product allocation, so that when I scan a barcode it will run a few checks first just to make sure the product matches what's been scanned at goods in or worst case scenario if its never been booked in.
What I'm currently trying to do revolves around the goods out process where I want to allocate a product. All I'm doing is scanning the serial number and then running some VBA to see if that Serial already exists in the serial table. I have a variable called "SerialScan" that just takes the value of what the barcode scanner puts into the datasheet textbox this variant is stored as a String. Next up I have a Variant called "SerialIDScanSearch" (I know not the best naming convention). Now this is a Dlookup..
Code:
SerialScan = Me.SerialNumber_txt.value
SerialIDScanSearch = DLookup("[SerialID]", "[tbl_SerialNumbers]", "[Serial Number]=" & SerialScan)
However, I get a type mismatch ...
"Run-Time Error '3464: Data type mismatch in criteria expression"
Criteria in the expression so I've tried a few different things, I've checked my tables to see what serial number is being stored as its short text as can contain numbers and characters. However I cant seem to work out how to get around this error at all. Is it the datatype on my first variable SerialScan? I basically want to use SerialIDScanSearch to pull the primary key which is an auto number so I can use this elsewhere but also see if this returns a Null value so I have the option of adding a line into the serial number table as a last resort (this code is done and appears to be working just fine, but I cant get 'SerialIDScanSearch' to actually store a value at all as I keep getting the RunTime Error.
Any advice would be greatly appreciated, sorry if i missed anything important to assist with this error please let me know and I'll happily share it. Currently just looks like so...
Code:
Dim SerialScan As String
Dim SerialIDScanSearch As Variant
SerialScan = Me.SerialNumber_txt.value
SerialIDScanSearch = DLookup("[SerialID]", "[tbl_SerialNumbers]", "[Serial Number]=" & SerialScan)
SerialID in the table itself is an Autonumber (long) and Serial Number is stored as Short Text within the table.
Thankyou everyone have a great evening!