excel vba - Right function vba -
i want take right of symbol in string used
right(enclosedvalue, instr(enclosedvalue, "*") - 0)
where enclosed value 29,6 *60
, need return *60
, returns
,6 *60
sorry if question has been asked already, have started using vba , i'm bit confused
try mid
instead:
mid(enclosedvalue, instr(1, enclosedvalue, "*"))
Comments
Post a Comment