Receive Products with Barcodes in Excel. Speed up the receiving process using barcode scanner. Record the count of product received in Excel.
Check out my online courses
Allow me teach you the skills in Excel that you need for business
Become an Affiliate and earn 25% on Course Sales
For more help visit my website or email me at [email protected].
Contact me regarding customizing this template for your needs.
Click for online Excel Consulting
I am able to provide online help on your computer at a reasonable rate.
Check out my next one-hour Excel Webinar
I use a Blue condenser Microphone to record my videos, here is the link
Check out Crowdcast for creating your webinars
If you need to buy Office 2019 follow
I use Tube Buddy to help promote my videos
Check them out
Follow me on Facebook
TWEET THIS VIDEO
Follow me on twitter
easyexcelanswers
IG @barbhendersonconsulting
You can help and generate a translation to you own language
*this description may contain affiliate links. When you click them, I may receive a small commission at no extra cost to you. I only recommend products and services that I’ve used or have experience with.
code
Sub receive()
Dim barcode As String
Dim rng As Range
Dim rownumber, count As Long
Dim rec As Long
barcode = Sheet3.Cells(2, 2)
count = Sheet3.Cells(2, 1).Value
Sheet1.Activate
If barcode (not equal to ) “” Then
Set rng = ActiveSheet.Columns(“a:a”).Find(what:=barcode, _
LookIn:=xlFormulas, LookAt:=xlWhole, SearchOrder:=xlByRows, _
searchdirection:=xlNext, MatchCase:=False, SearchFormat:=False)
If rng Is Nothing Then
MsgBox “number not found”
GoTo ende
Else
If count(greater then) 1 Then
rng.Offset(0, 3).Value = rng.Offset(0, 3).Value + count
Else
rng.Offset(0, 3).Value = rng.Offset(0, 3).Value + 1
End If
Sheet3.Cells(2, 2) = “”
End If
Sheet3.Cells(2, 1) = “”
End If
ende:
Sheet3.Activate
Sheet3.Cells(2, 2).Select
End Sub