Formula Problem need help

G

Guest

I want to reference one (1) cell on sheet one (income) A4 and copy the
information (either text or an amount) on Sheet 3 (Income and lose) A4.

Insert>Name>Define ='Cash Receipts'!$A$4 (this is actually the date the
cash was received.)

I am able to accomplish this task. It works fine for the one column and row
only. The income on Sheet one - A4 - is automatically entered on to sheet
three - A4 -when I enter the necessary information in the defined column and
row A4 on sheet one.

Now I want to be able to do the same for all the cells in Column A on sheet
one (enter dates income was received) so they appear on column A on sheet 3.
I can’t get this to copy down the column.

How do I copy this information down the column so that all the information I
type on sheet one will appear on sheet three?

I hope this is clear?
 
D

Don Guillett

You said formula but that would eat up a lot of resources so,
right click sheet tab>view code>insert this>

Private Sub Worksheet_SelectionChange(ByVal Target As Range)
If Target.Column <> 1 Then Exit Sub
Sheets("sheet3").Cells(target.row, 1).Value = Target
End Sub
 
G

Gord Dibben

Forget the defined names.

In Sheet 3 A4 enter =IF(Sheet1!A4="","",Sheet1!A4)

Copy that down column A of Sheet 3


Gord Dibben MS Excel MVP
 
G

Guest

Both Gord and Don's formulas work like a charm.

Many thanks Guys..... it is sincerely appreciated.

I have to learn and study VBA Basic. It is very new to me as well as Excel
itself.... I LOVE learning!

sheet tab>view code>insert this>code
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top