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

c# - Validate object ID from GET to POST -

node.js - Custom Model Validator SailsJS -

php - Find a regex to take part of Email -