When you need a quick tool to scan the barcodes of the items you install on field you can use Card Storage app from Google Play.
Jump to
Card storage app
The app allows you to store (at this time, Feb 2018) the following data:
- Two pictures (front and back view fields)
- Barcode picture
- Barcode info
- Two fields of text (card title and description)
- A label field, visually a color but saved as a number
- A flag to mark as Favorite, stored as boolean
All info can be backed up to Google Drive as a zip archive called card_storage.zip. From there, you can download it to your computer and use the following code to extract the data.
Usage example
- A picture of item and a picture of the surroundings (front and back view fields)
- Barcode picture – as is
- Barcode info – as is
- Customer & Location as Title; item description as description
- Unit of items as Label
- Urgent as Favorite
VBA code to get the info
How to use the code
- Double-click the snippet above and press Ctrl+c to copy the code.
- Open an Excel file, right-click on a tab and select View Code
- Use Insert => Module to add a new module
- Immediately paste the code with Ctrl+v
- Use Tools => References and check Microsoft Scripting Runtime
- Return to Excel (Alt+q)
- Use Developer => Macros and run List_Card_Storage. If the menu doesn’t exist, go to File => Options => Customize Ribbon and check Developer on the right side.
- When the macro starts, it will prompt you to select the Card Storage archive. It may have any name, doesn’t matter if you renamed it.
- When ready you’ll see a message box.
What you’ll get
On the same folder with the zip file there will be created a new subfolder with the same name as the zip, containing:
- The archive’s content. Compared to the zip, all pictures will have the .png extension
- The original .dat file storing the info you input on Card Storage app
- The excel file called card_storage.xls, containing the result, as in the picture below
Important
- There’s no need to fill in all fields when you create the cards in app. Use only what you need plus the mandatory fields like barcode itself
- As long as you don’t move the files the pictures can be accessed from Excel by clicking on their hyperlinks
- If you have trouble using the code, you can download a ready to use file from my Google Drive.