Forum Discussion
Excel Formula
I was wondering if anyone could help me with a formula. I'm trying to automatically fill in numbers in groups but every time there is an empty cell the number increase by 10 for example all the items are 11190 and then the space makes it 11200 and then 10825 would become 11210. Thanks for any help.
5 Replies
- PReaganBronze Contributor
Assuming your list starts at E1 and there are never more than 5 blank cells between entries, then cell F7 could be:
=IF(ISBLANK(E7),"",IF(ISBLANK(E6),OFFSET(F7,-COUNTA(E1:E6)+1,0)+10,F6))
Copy down as necessary.
- ajfbhCopper Contributor
Hey PReagan
sorry for the long reply, I have tried to implement this formula but not sure If I am doing it correctly because I haven't really used that tool before, when I type in the formula it just makes the top highlighted square 0. Furthermore the list starts at e3727 rather that e1.
Thanks for your help, any further advisement would be incredible.
- PReaganBronze Contributor