If in column R I have a 6 digit numeric string in each cell like below what would be the most efficient way to calculate the total of the first two digits, then the 2nd two, then the 3rd two, other than using a lengthy formulae for each cell like these
=LEFT(R1,1) + MID(R1,2,1)
=MID(R1,3,1) +...