ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Worksheet Functions (https://www.excelbanter.com/excel-worksheet-functions/)
-   -   How do I create recurring entries in Excel? (https://www.excelbanter.com/excel-worksheet-functions/214354-how-do-i-create-recurring-entries-excel.html)

Seth

How do I create recurring entries in Excel?
 
I use Excel to manage a financial ledger. I want to create recurring monthly
entries. Is there a way to make this happen using an excel formula or macro?

Max

How do I create recurring entries in Excel?
 
Tinker around with this simple formulas play
for some ideas on what is possible

Assume you have 3 source items listed in A1:A3, eg:

Item1
Item2
Item3

A) Put this in any start cell, say in C2:
=INDEX($A$1:$A$3,INT((ROWS($1:1)-1)/2)+1,)
Copy C2 down to C7

You'd get this repeating structure which draws out the source list:

Item1
Item1
Item2
Item2
Item3
Item3

where the "2" within the INT part of it
sets how many times to repeat each source item in the source list
(If you change the "2" to "3" in C2, then copy down,
it'll triplicate list the source items in sequence)

B) Put this in D2:
=INDEX($A$1:$A$3,MOD(ROWS($1:1)-1,3)+1)
Copy D2 down to D7

You'd now get this kind of cyclic repeating structure on the source list:

Item1
Item2
Item3
Item1
Item2
Item3

where the "3" within the MOD part of it
is equal to the number of source items (in A1:A3)

--
Max
Singapore
http://savefile.com/projects/236895
Downloads:21,000 Files:370 Subscribers:66
xdemechanik
---
"Seth" wrote:
I use Excel to manage a financial ledger. I want to create recurring monthly
entries. Is there a way to make this happen using an excel formula or macro?



All times are GMT +1. The time now is 04:14 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com