Forum Discussion
Jen1206
Oct 30, 2019Copper Contributor
Need formula to increase increment value by 0.5 in every 5th cell
I am creating a workbook to show daily training sessions per XX attendees. I need a formula to calculate the following Users: 1, 2, 3, 4, 5, etc. Training Session needed: 1, 1, 1, 1, 1.5, etc. ...
Jen1206
Oct 30, 2019Copper Contributor
PReagan Thank you for your reply!
Your formula is very close to what I need! How can we make the following pattern happen?
1 | 1 | 1 | 1 | 1.5 | 1.5 | 1.5 | 1.5 | 1.5 | 2 |
PReagan
Oct 30, 2019Bronze Contributor
I see. In that case, simply place this formula in Cell A1 and copy over as necessary:
=1+0.5*INT(COLUMN(A1)/5)
Let me know if this helps,
PReagan