Hi guys,
Hoping I can get some help here.
Background is I have two sets of data, one a list of a simple set of ID's (one ID per line) and I have a piece of repetitive coding that needs one of the lines inputted into a place in the code (hope that makes sense.
An example:
(List of data)
01-12345
02-12345
03-12345
(Code block - ignore code lol it's made up)
<check>
("<code here>")
if () then
finish
</check>
So once the "whatever" method is used, I will end up with a code that looks like this:
<check>
("01-12345")
if () then
finish
</check>
<check>
("02-12345")
if () then
finish
</check>
<check>
("03-12345")
if () then
finish
</check>
Let me know if I'm not making sense :P my experience with Access is null :P
Cheers!