Feb 10 2023 01:38 AM - edited Feb 10 2023 02:49 AM
Hello,
I need the formula below to recognize upper and lower text. For example column A contains Product ID a030900000OsXao. This value is being looked up in Lookup!J:L. The problem is that this ID is being treated the same as a030900000OsXAo even though they are different IDs, because the letter 'a' is being treated same as 'A' in second ID.
The formula below in column S of my excel attached needs updating to recognize upper and lower text.
=IFERROR(VLOOKUP(A2,Lookup!J:L,2,FALSE),B2)
Help is appreciated!
Thanks
Jenny
Feb 10 2023 01:46 AM - edited Feb 10 2023 01:47 AM
This is the idea:
=LET(names,$E$2:$E$10,return,$F$2:$F$10,r,MATCH(TRUE,EXACT(I2,names),0),INDEX(return,r))
Feb 10 2023 02:45 AM
Feb 10 2023 05:52 AM - edited Feb 10 2023 06:20 AM
Here's the updated formula:
=LET(r,MATCH(TRUE,EXACT(A2,AppID),0),IFERROR(INDEX(AddProgramInfo,r),B2))
Feb 10 2023 05:59 AM
Feb 10 2023 06:21 AM
SolutionFeb 10 2023 06:54 AM
Feb 10 2023 07:40 AM