I have this spreadsheet that has the following formulas copied down 4 columns starting in column 4 or "D"
D=SUM(1*(LEFT(C2,1)))
E=SUM(1*(MID($C2,2,1)))
F=SUM(1*(MID($C2,3,1)))
G=CONCATENATE((MIN(LEFT($C2),MID($C2,2,1),RIGHT($C2))),(MEDIAN(LEFT($C2),MID($C2,2,1),RIGHT($C2))),(MAX(LEFT($C2),MID($C2,2,1),RIGHT($C2))))
Is there any way that I can take these formulas & create a vba that will automatically insert this throughout my spreadsheet? or at least shorten my formulas?
I read that it would make spreadsheet smaller & thus calc faster. Is this true?