I use the following formula to sum the values corresponding to the characters.
{=SUM(VLOOKUP(T(IF(1,MID(A2,ROW(INDIRECT("1:"&LEN(A2))),1))),values,2,0))} . It worked but can't get it to work case-sensitive and with numbers.
If a=1.325 b=1.5 A=1.5 2=1.5 ->
ab = a+b = 1.325+1.5 = 2.825
ab = 2.825 (works)
Ab = 3 (doesn't work)
ab2 = 4.325 (doesn't work)
Ab2 = 4.5 (doesn't work)
Maybe using TRUE index match function, couldn't figure it out.
Any help greatly appreciated. Thank you!!!
