How do I loop an IF statement?

R

ropa

I'm would like to know how to loop an IF statement. I am trying to add .01
to cell L6 when I15 and K15 don't equal each other. I have started with
=IF(I15=K15,L6=L6,L6=L6+0.01). Can someone please help?
 
F

Frank Kabel

Hi
this is not possible with formulas. Formula can't change other cell values
but only return a value.
If you need this kind of procedure you either have to use a helper column or
a VBA solution
 
Top