Forum Discussion

IlonaK2208's avatar
IlonaK2208
Copper Contributor
Jul 03, 2023
Solved

Sum number contain letter

Hi All,  I'm trying to sum 2 values, first value contains letter. Is there any way to sum this 2 values? Currently, I found 2 options to separate the number from the letter, but I need the return n...
  • NikolinoDE's avatar
    Jul 03, 2023
    Here's an example:
    If the first value with the letter is in cell A1 and the second value is in cell B1.
    You can use the following formula in cell C1 to achieve the desired result:
    =LEFT(A1,1) & (VALUE(MID(A1,2,LEN(A1)-1)) + B1)