Does this slow down calculation?

S

sfrancoe

I want to put some spaces between arguments in formulas to make the more
readable but I was wondering if this slows down the calculation time?

For example if I have a sheet with many formulas will the calculation times
be different between the two examples?

IF(VLOOKUP(A1,MyRange,3,False)="yes",Sum(D1:G1),average(B1:C1))

IF( VLOOKUP(A1,MyRange,3,False)="yes", Sum(D1:G1), Average(B1:C1))
 
D

Dave Peterson

I don't think so.

In fact, I sometimes add alt-enters to make the formula easier to read, too.
 
Top