I am working on a VBA code to do a couple things. The first is to add a new row and add the information I put into a seperate list. I want it to do this unless the Case Number and the Charge is the same. If those two things are the same then I want to fill in the rest of that row with that additional data.
So this is the data set I am looking at:
Then I will have a seperate box on a different sheet with the place to input the information that you want to add or edit
If there is a way to move the data from the bottom table to the top table in a new row, and if it matches another row then just edit that row with the additional information, that would be awesome. Help me out with the VBA code to do this. Thank you.
Cheers
So this is the data set I am looking at:
Case No | Charge | Name | DOB | Fine Total | Fine Suspended |
CR49-12-0078 | DUI | John Doe | 1998 | 1000 | 500 |
CR49-12-0077 | Open Cont | Jared Doe | 2000 | 1000 | 750 |
CR49-12-0075 | DUI | Josh Doe | 1987 | ||
CR49-12-0074 | Open Cont | Johnny Doe | 1962 | 1000 | |
CR49-12-0073 | DUI | Jessica Doe | 2001 | 1000 | 500 |
Then I will have a seperate box on a different sheet with the place to input the information that you want to add or edit
Case No | CR49-12-0075 |
Charge | DUI |
Name | Josh Doe |
DOB | 1987 |
Fine Total | 1000 |
Fine Suspended | 500 |
If there is a way to move the data from the bottom table to the top table in a new row, and if it matches another row then just edit that row with the additional information, that would be awesome. Help me out with the VBA code to do this. Thank you.
Cheers