Notices
Computer & Technology Related Post here for help and discussion of computing and related technology. Internet, TVs, phones, consoles, computers, tablets and any other gadgets.

Excel help - possible Macro required?

Thread Tools
 
Search this Thread
 
Old 03 May 2007, 09:43 PM
  #1  
Da Booga
Scooby Regular
Thread Starter
 
Da Booga's Avatar
 
Join Date: May 2002
Posts: 732
Likes: 0
Received 0 Likes on 0 Posts
Question Excel help - possible Macro required?

Hi,

I currently have quite a large & complicated spreadsheet (a 3 year financial forecast for a corporate finance company).

At the moment I have to manually input the required monthly funding figure each month to make the figures balance. This has to be done manually as when the month 1 figure is entered it has a knock on effect on months 2 - 36 due to interest costs, funding requirements etc.

I have a formula that calculates the requirement each month (in the cell below where the figure is required) but I cannot use a formula to automatically calculate the figure as it is the final piece in the accounts jigsaw and creates a circular references!

What I need excel to do is automatically input the correct figure for month 1 from the calculation in the cell below then once this is done and the figures for months 2-36 have automatically flowed through and changed take the updated month 2 figure, which will then change months 3-36 etc. etc.

Basically I need Excel to copy 36 results from 1 cell to another individually and inbetween each cell being copied the remaining cells to be recalculated.

Any suggestions chaps as it's driving me mad having to manually enter 36 figures each time I update the forecast

Hope you can understand my explanation LOL

Gareth
Old 03 May 2007, 09:58 PM
  #2  
djuk
Scooby Regular
 
djuk's Avatar
 
Join Date: Jun 2002
Location: Berkshire
Posts: 1,280
Likes: 0
Received 0 Likes on 0 Posts
Default

I've read this a couple of times but I can't quite work out what it is you need... but I am very tired

Do you have an example you can upload somewhere (fudge the figures if its sensitive)

D
Old 03 May 2007, 10:53 PM
  #3  
Da Booga
Scooby Regular
Thread Starter
 
Da Booga's Avatar
 
Join Date: May 2002
Posts: 732
Likes: 0
Received 0 Likes on 0 Posts
Default

I've uploaded a VERY simple example of what I need to do here

http://myweb.tiscali.co.uk/boogat/example.xls

Hopefully you'll be able to see what I mean but bare in mind that is a very simple sheet with a lot less tabs/tables as are in the full sheet!
Old 04 May 2007, 01:19 PM
  #4  
bob269
Scooby Regular
 
bob269's Avatar
 
Join Date: Mar 2003
Posts: 2,654
Likes: 0
Received 1 Like on 1 Post
Default

Why dont you record a macro, copy and paste the results manually for each month, then next time you need to recalculate a different figure just run the macro again.
Old 04 May 2007, 01:52 PM
  #5  
michaelro
Scooby Regular
 
michaelro's Avatar
 
Join Date: Jan 2006
Posts: 897
Likes: 0
Received 0 Likes on 0 Posts
Default

Try This?

Code:
Sub UpdateFigures()
Dim icol As Integer
'1 to 12 (+ 5 for Column E)
For icol = 5 To 16
'First determine if funding req (Check Closing Bank)
'If not - Do nothing
If Cells(40, icol) >= 0 Then
'Otherwise
Else
    'Enter the Value in the cell (Absolute Value - Without the minus sign)
    Cells(6, icol).Value = Abs(Cells(11, icol).Value)
End If
'Move to next column
Next icol
End Sub
Related Topics
Thread
Thread Starter
Forum
Replies
Last Post
Mattybr5@MB Developments
Full Cars Breaking For Spares
28
28 December 2015 11:07 PM
Mattybr5@MB Developments
Full Cars Breaking For Spares
12
18 November 2015 07:03 AM
leg200
Subaru Parts
5
07 October 2015 07:31 AM
has-scooby
Subaru Parts
4
06 October 2015 03:47 PM
FuZzBoM
Wheels, Tyres & Brakes
16
04 October 2015 09:49 PM



Quick Reply: Excel help - possible Macro required?



All times are GMT +1. The time now is 01:22 AM.