just wondering how i can get my GoTo function working in this VBA macro.
Code
'Get the relative column number where the criteria should be found
If vCriteria = vbYes Then GoTo 39
should that not shoot me back to line 39? i get a error "label not defined" as it is. also tried to set a :AddNew flag at line 39 and point the GoTo to AddNew. the same thing happens. any help? this is bugging me as i'm used to this command working... doesnt like it in vba. perhaps i'm rusty?
oh and one last thing... this code is at the end of the program. i'm trying to point it back tot he top to enable the user to add more email recipients. how can that redirect happen if my goto isnt working for me?