I need to extract the characters "to_" from an excel file in which can not be edited. The easy solution would be to do a find and replace on that file but since I can not edit it; I can't use that option. I'm using vLookup to retrieve the values from that excel sheet and when trying to do the extracting in the 3rd column of the lookup, Im running into a problem. Bellow is just an example:
1-04-13.xlsx Sheet 1
<tbody>
</tbody>
Sheet 2
<tbody>
[TD="class: px"wysiwyg_dashes_td""][/TD]
</tbody>
I was thinking the mid function
Thank you in advance.
1-04-13.xlsx Sheet 1
A | B | C | |
1 | Athelete | Shift | |
2 | Janeiro, Jacqueline | 2:15:00 PM | to 8:00:00 PM |
<tbody>
</tbody>
Sheet 2
A | B | C | |
1 | Athelete | Shift | |
2 | =VLOOKUP('[1-04-13.xlsx]Sheet1'!A1,'[1-04-13.xlsx]Sheet1'!A1:C2,1,0) | =VLOOKUP('[1-04-13.xlsx]Sheet1'!A1,'[1-04-13.xlsx]Sheet1'!A1:C2,2,0) | How do I extract [1-04-13.xlsx]Sheet1!C2 to show: 8:00:00 PM |
<tbody>
[TD="class: px"wysiwyg_dashes_td""][/TD]
</tbody>
I was thinking the mid function
Code:
=VLOOKUP('[1-04-13.xlsx]Sheet1'!A1,'[1-04-13.xlsx]Sheet1'!A1:C2,MID(COLUMN('[1-04-13.xslx]Sheet1'!$C$1),4,10),0)
Thank you in advance.