Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am a newbie in writing macros.

I have an excel file in which a column (total hours) is present.

As I update the 'total hours' column I need those values to be reflected in another excel file under a column (Efforts).

Can anyone give me the macro for the above said problem..

Thanks in advance

share|improve this question

2 Answers

It might make life a lot easier to keep everything in one workbook using separate sheets instead of completely separate files. Then you can make use of HLOOKUP, VLOOKUP, and referencing ranges with the Sheetname!Address format (Sheet1!A3:A4 for example)...

share|improve this answer

It should still be possible to have cells that reference cells from another workbook. I have done this with older versions of Excel. This link to the Microsoft site has instructions for 2003 version, but should still apply.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.