UMAKEMESIK
Active Member
- Joined
- Oct 3, 2005
- Messages
- 378
Hello to all,
We have a WB1 that upon opening evaluates cell d37
if D37 is blank then VB will go out to the network, search
another wb2, and retrieve a number and apply that number
to D37 of the current WB1.
Next, if d37 of wb1 is populated we use this:
Then we submit wb1 to send out via email, save to the network and log onto a master log, then close everything.
---------------------------------
I have this idea but have not idea on how to implement.
When we open a legacy document D37 wil be populated so the initial VB code will end
and D37 will stay as is.
but now when click on the Submit button I would like VB to re-evaluate D37 again
and if the cell is populated, which it will be, append the number in the Cell with a Letter
i.e. - 2534 will become 2534A
Where 2534 was the original number in D237
and again, if we use the from again
evaluate D37 upon submittal and if
the number is
2534A
Change it to 2534B.
if this or any form of it is possible with the help of VB I would appreciate the the assistance.
thanks
We have a WB1 that upon opening evaluates cell d37
if D37 is blank then VB will go out to the network, search
another wb2, and retrieve a number and apply that number
to D37 of the current WB1.
Next, if d37 of wb1 is populated we use this:
Code:
If Range("D37").Value <> "" Then Exit Sub
Then we submit wb1 to send out via email, save to the network and log onto a master log, then close everything.
---------------------------------
I have this idea but have not idea on how to implement.
When we open a legacy document D37 wil be populated so the initial VB code will end
and D37 will stay as is.
but now when click on the Submit button I would like VB to re-evaluate D37 again
and if the cell is populated, which it will be, append the number in the Cell with a Letter
i.e. - 2534 will become 2534A
Where 2534 was the original number in D237
and again, if we use the from again
evaluate D37 upon submittal and if
the number is
2534A
Change it to 2534B.
if this or any form of it is possible with the help of VB I would appreciate the the assistance.
thanks