Hi,
I have a user interface that has three ID fields.
Let's call them
ID A
ID B
ID C
I need to search on ID A in a search field, and add or make updates to IDs B and C, which currently might be empty or have some other value in the field. IDs B and C are the same values. When I search ID A it must be correctly synced up with IDs B and C. For the code I was thinking all I really need is ID A and ID B.
What's the best way to do this? I have a total of 1,000 IDs that I have to update. Would I create two lists? I'm kinda new to programming, and could use some insight.
The data is currently in an Excel file.
ID A |
ID B |
ID C |
1 |
2 |
2 |
2 |
4 |
4 |
3 |
6 |
6 |
4 |
8 |
8 |
5 |
10 |
10 |
6 |
12 |
12 |
7 |
14 |
14 |
8 |
16 |
16 |
9 |
18 |
18 |
10 |
20 |
20 |
I already have some code that I'm going to use from a previous project that would look up ID A. Now I just need the piece where it makes the update for IDs B and C.
Thanks for the help,
C.