indi visual
Member
These two formulas do the exact same thing.
=RIGHT(A2,LEN(A12)-SEARCH("(",A2)+1)
=MID(A2,1+FIND("(",A2)-1,999)
I'm trying to get either one of them to work this way (for a sub using active cell).
=RIGHT(ActiveCell.Value,LEN(ActiveCell.VAlue)-SEARCH("(",ActiveCell.Value)+1)
=MID(ActiveCell.Value,1+FIND("(",ActiveCell.Value)-1,999)
I realize now that the majority of my questions revolve around this particular issue (with strings). But I know there has to be some easy rule of thumb for converting these to sub use.
=RIGHT(A2,LEN(A12)-SEARCH("(",A2)+1)
=MID(A2,1+FIND("(",A2)-1,999)
I'm trying to get either one of them to work this way (for a sub using active cell).
=RIGHT(ActiveCell.Value,LEN(ActiveCell.VAlue)-SEARCH("(",ActiveCell.Value)+1)
=MID(ActiveCell.Value,1+FIND("(",ActiveCell.Value)-1,999)
I realize now that the majority of my questions revolve around this particular issue (with strings). But I know there has to be some easy rule of thumb for converting these to sub use.