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. ...
PReagan
Oct 30, 2019Bronze Contributor
Hello Jen1206,
I hope I am understanding your goal correctly.
If so, then here is one possible solution:
Assuming Row 1 contains values in adjacent cells starting in A1 as:
1 | 1 | 1 | 1 | 1 | 2 | 2 | 2 | 2 | 2 |
...
Then A2 could contain the formula:
=IF(MOD(COLUMN(A1),5)=0,A1+0.5,A1)
Copying this formula over would result in
1 | 1 | 1 | 1 | 1.5 | 2 | 2 | 2 | 2 | 2.5 |
...