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

Popular posts from this blog

javascript - Google App Script ContentService downloadAsFile not working -

javascript - Function overwritting -

c# - Exception when attempting to modify Dictionary -