Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Beginner questions: I want to write a macro to enter a sequence of monthly
cash flows in a row, say $10 for 5 periods, followed by $15 in the next four months. If doing it manually, I would select a range of cells in a row for a Fill | Series operation. Automating it, I know: B2= dollar value in first cash flow series C2= number of months in first cash flow series B3= dollar value in second cash flow series C3= number of months in secon cash flow series 1. In the first operation, I want to fill a range, call it 'Range 1' with a series of values contained in B2. I know the left most cell in the range, let's say B15, but the number of cells to the right captured in the range will vary according to data input into C2. So, for example, if B2=$10, and C2 is '5', then the selected range would be B15:F15, and each cell in the range would contain the number $10. How is that written in Visual Basic? 2. In the second operation, I am filling the adjacent range of cells to the right of 'Range 1' above, so in this case, I will not know the location of the first empty cell in Row 15, until the selection created in 'Range 1' is filled with the data series. And then, this next range, 'Range 2', needs to be selected based on a variable contained in cell C3, and filled with the value in B3, let's say $15. So if B2=$10 and B3=4, 'Range 1' would be B15:F15, and the cells would contain the value $10, and 'Range 2' would be G15:J15, and the cells would contain $15. Pretty basic, I'm sure, but way over my head. |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Sum over a variable number of cells | Excel Discussion (Misc queries) | |||
Copy cells to variable number of rows | Excel Discussion (Misc queries) | |||
Summing a Variable Number of Cells | Excel Discussion (Misc queries) | |||
Selecting the correct number from a range of cells | Excel Worksheet Functions | |||
AutoSum for variable number of cells | Excel Programming |