how can we extract a substring from a string if we give the positions of first and last letter in string?
Dim my_string As String
Dim my_substring As String
my_string="Excel/Sheet1.xls"
instrrev(my_string,"/")
gives 6 (start position)
len(my_string)
gives 16 (end position)
So to get "Sheet1.xls" as my substring what should we do?
Or we can get it selecting characters till "/" is met first/