I have the following functions:
1. =MID(H2, FIND(":", H2) + 1, FIND(",", H2) - FIND(":", H2) - 1)
and
2. =MID(H2, FIND(":", H2, FIND(":", H2) + 1) + 1, (LEN(H2) - 1) - FIND(":", H2, FIND(":", H2) + 1))
The only variable is H2. NOTHING else should change. How can I create a VBA function to...