Transition Macro to work on an Excel table.

Livin404

Well-known Member
Joined
Jan 7, 2019
Messages
743
Office Version
  1. 365
  2. 2019
Platform
  1. Windows
My current macro works perfectly, but because I had to change my database to an Excel table this current macro needs work. My worksheet is "Pallets" and the table is named "Table1".

Again before the table it worked perfectly but changing the source to a table makes a non-workable solution.


Macro in need of updating:

VBA Code:
Private Sub cmdEdit2_Click()

If Selected_list2 = 0 Then

MsgBox "No row is selected.", vbOKOnly + vbInformation, "Edit"

Exit Sub

End If

Me.txtRowNumber2.Value = Selected_list2 + 1
Me.txtDate.Value = Me.lstDatabase.List(Me.lstDatabase.ListIndex, 0)
Me.txtDestination.Value = Me.lstDatabase.List(Me.lstDatabase.ListIndex, 1)
Me.txtPalletID.Value = Me.lstDatabase.List(Me.lstDatabase.ListIndex, 2)
Me.txtTcns.Value = Me.lstDatabase.List(Me.lstDatabase.ListIndex, 3)
Me.txtPieces.Value = Me.lstDatabase.List(Me.lstDatabase.ListIndex, 4)
Me.txtWeight.Value = Me.lstDatabase.List(Me.lstDatabase.ListIndex, 5)
Me.cmbShipment.Value = Me.lstDatabase.List(Me.lstDatabase.ListIndex, 6)
Me.cmbSupport.Value = Me.lstDatabase.List(Me.lstDatabase.ListIndex, 8)
Me.txtRemarks.Value = Me.lstDatabase.List(Me.lstDatabase.ListIndex, 9)


MsgBox "Please make the required changes and click on 'Save' button to update,", vbOKOnly + vbInformation, "Edit"





End Sub
 

Excel Facts

Easy bullets in Excel
If you have a numeric keypad, press Alt+7 on numeric keypad to type a bullet in Excel.
This is a pretty good reference for working with Tables. Perhaps, it can help you with your transition...

 
Upvote 0

Forum statistics

Threads
1,213,536
Messages
6,114,208
Members
448,554
Latest member
Gleisner2

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