Hello,
I am using the formula below in order to match two data sets together. It works fine.
For my next task I am trying to limit the match to only the first 12 characters of the string. I am trying to fit in the left function and using 12 as the character count, but I am getting errors.
Here is the current formula I am using and this works to pull data from a different sheet into my current sheet and have that data match the correct roll number.
=INDEX({Wet End Log T2-Gap}, MATCH([Roll #]@row , {Wet End Process Log Treater 2-FM7500.00 Range 2}, 0))
I need the match function to only match against the first 12 characters and not try to match anything past that.
What I tried is the following.
=INDEX({Wet End Log T2-Gap}, MATCH(left({Wet End Process Log Treater 2-FM7500.00 Range 2},12)[Roll #]@row , {Wet End Process Log Treater 2-FM7500.00 Range 2}, 0))
Any help using left or another function along with match would be great.
Thank you!