Hi,
I have just read a post in which it describes how to put a formula in a cell with vba. Which works great, but how do we make that formula dynamic and follow on from the previous cell example:-
so when im entering data from a userform and moving down through the rows, then next row should then be
and onwards down the rows.
Thanks in advance for any help
Ally.
I have just read a post in which it describes how to put a formula in a cell with vba. Which works great, but how do we make that formula dynamic and follow on from the previous cell example:-
Code:
=IF(A2="","",IF(F2<>"",A2+0,A2+7))
so when im entering data from a userform and moving down through the rows, then next row should then be
Code:
=IF(A3="","",IF(F3<>"",A3+0,A3+7))
and onwards down the rows.
Thanks in advance for any help
Ally.