Caveman1964
Board Regular
- Joined
- Dec 14, 2017
- Messages
- 127
- Office Version
- 2016
- Platform
- Windows
Please help...I have spent hours trying to figure this out but nothing works....yes i am very ignorant about VBA and trying to learn but need this.
I need a search button as described below.
Any help will be appreciated.
Sheet 1
<tbody>
</tbody>
Sheet 2 - A macro vba search button that finds criteria in A:A on sheet 1
For example, search finds job 456789 and picks up what is in row with 4 of sheet 1 (Job number)
And puts it in cells on sheet 2 like this.
<tbody>
</tbody>
I need a search button as described below.
Any help will be appreciated.
Sheet 1
| A | B | C | D | E | F |
1 | 123456 | | | | | |
2 | 234567 | | | | | |
3 | 345678 | | | | | |
4 | 456789 | 10/2/18 | 10/3/18 | | 10/5/18 | 10/8/18 |
5 | 567890 | | | | | |
<tbody>
</tbody>
Sheet 2 - A macro vba search button that finds criteria in A:A on sheet 1
For example, search finds job 456789 and picks up what is in row with 4 of sheet 1 (Job number)
And puts it in cells on sheet 2 like this.
| A |
1 | 10/2/18 |
2 | 10/3/18 |
3 | |
4 | 10/5/18 |
5 | 10/8/18 |
<tbody>
</tbody>