Inventory Spreadsheet (im a newb with VBA)

Tril

New Member
Joined
Mar 7, 2022
Messages
2
Office Version
  1. 2019
Platform
  1. Windows
Hello everyone,

We are a small company and i would like to add some QOL things to our excel spreadsheet that we use for inventory in excel 2019

Column A: Job number
column B: Part number
Column C: Quantity
column: D Client

I know how to add a macro to a button and stuff like that but i aint that good in VBA, i know some very basic stuff and this is out of my league. Ive looked on google,found some macros here and there but for some reason the macros dont work,maybe im doing something wrong or my excel version isnt compatible,idk.

I would like to have a floating form always on screen in excel. I would like the Form to take the information from whatever i select, for exemple, if i highlight Row 26, then the column A26 will always go to the Job number field on the floating form, and so on for column B-C-D

on top for that i would like a print button on the floating from that print the information of the selected row

In Resume: I want to click a Row, the information from the different columns are copied to a floating form and then i print the form.

can you guys help me out?

thanks in advance.
 

Excel Facts

Lock one reference in a formula
Need 1 part of a formula to always point to the same range? use $ signs: $V$2:$Z$99 will always point to V2:Z99, even after copying
VBA Code:
Dim sWorkbookName As String
Private Sub btnConnect_Click()
    Dim iCnt As Integer
    For iCnt = 0 To ListBox1.ListCount - 1 'Reads the items in the ListBox
        If ListBox1.Selected(iCnt) = True Then  'Check ListBox to see if the item is selcted or not
            sWorkbookName = ListBox1.List(ListBox1.ListIndex)
            Workbooks(sWorkbookName).Activate
            txtFile.Value = sWorkbookName
        End If
    Next
End Sub
Private Sub btnFill_Click()
    If sWorkbookName = "" Then 'Make sure a WorkBook has been selected
        Exit Sub
    Else
        Workbooks(sWorkbookName).Activate 'Verify the right WorkBook is selected
        UserForm1.txtJobNumber.Value = Cells(ActiveCell.Row, "A").Value
        UserForm1.txtPartNumber.Text = Cells(ActiveCell.Row, "B").Value
        UserForm1.txtQuantity.Value = Cells(ActiveCell.Row, "C").Value
        UserForm1.txtClient.Text = Cells(ActiveCell.Row, "D").Value
        UserForm1.txtCurrentRow.Text = ActiveCell.Row
    End If
End Sub
Private Sub btnPrint_Click()
    If sWorkbookName = "" Then 'Make sure a WorkBook has been selected
        Exit Sub
    Else
        Workbooks(sWorkbookName).Activate 'Verify the right WorkBook is selected
        With ActiveSheet.PageSetup
            .Zoom = False
            .FitToPagesTall = 2
            .FitToPagesWide = 1
            .Orientation = xlLandscape
        End With
        Range("A" & ActiveCell.Row & ":D" & ActiveCell.Row).PrintOut Preview:=True
    End If
End Sub
Private Sub btnClear_Click()
    Dim ctrl As Control
    For Each ctrl In Me.Controls 'Clear all TextBoxes
        If TypeName(ctrl) = "TextBox" Then
            ctrl.Value = ""
        End If
    Next
    Me.ListBox1.Clear
End Sub
Private Sub btnExit_Click()
    Unload Me
End Sub
Private Sub btnList_Click()
    Dim objXL1, WB1
    Set objXL1 = GetObject(, "Excel.Application")
    Set WB1 = objXL1.ActiveWorkbook
    Me.ListBox1.Clear
    For Each WB1 In Application.Workbooks 'Fills in the ListBox with all open spreadsheets
        Me.ListBox1.AddItem WB1.Name
    Next
End Sub

I tried solving your issue. I created a UserForm and added the code above to it. In order to get the form to free float you will need the code below in the module. I hope this helps.

Public Sub show_form()
UserForm1.Show vbModeless 'Allows the UserForm to free float
End Sub
 

Attachments

  • forDisplayDataRow.jpg
    forDisplayDataRow.jpg
    79.1 KB · Views: 19
Upvote 0
Solution
Click Update List to see a listing of open spreadsheets
Once you select the one you wish to use, click Connect
Select your row, and click Fill, from there you can Print the information.
 
Upvote 0
Thank you DacEasy, it wasnt easy but i think i got your code to work :p
 
Upvote 0
Good Job, glad you were able to accomplish your goal.
 
Upvote 0

Forum statistics

Threads
1,215,701
Messages
6,126,309
Members
449,309
Latest member
Ronaldj

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top