secretcodepastedhere
New Member
- Joined
- Apr 8, 2010
- Messages
- 47
Hi all!
I have a sheet set up using this formula:
which looks for the id in D in the X column and returns the corresponding # in the Y column. Recently the format for the #'s in Y has been changed to include a day of week identifier (i.e. M605, T605, W605, R605, F605) instead of a zero (which is why it has a *1 at the end currently).
The current formula returns a blank cell with this new format, presumably because it can't multiply a letter. Can someone help me set it to remove the leading letter? I have several other formulae that rely on this output...
Thanks in advance.
I have a sheet set up using this formula:
Code:
=IFERROR(IF($D7<>0,(INDEX($X:$Y,MATCH($D7,$X:$X,0),2))*1,""),"")
which looks for the id in D in the X column and returns the corresponding # in the Y column. Recently the format for the #'s in Y has been changed to include a day of week identifier (i.e. M605, T605, W605, R605, F605) instead of a zero (which is why it has a *1 at the end currently).
The current formula returns a blank cell with this new format, presumably because it can't multiply a letter. Can someone help me set it to remove the leading letter? I have several other formulae that rely on this output...
Thanks in advance.