ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Discussion (Misc queries) (https://www.excelbanter.com/excel-discussion-misc-queries/)
-   -   Help! (https://www.excelbanter.com/excel-discussion-misc-queries/204797-help.html)

Skydiver

Help!
 
I have a figure in F1. In G1 is a copy of F1. I want to continue entering
figures in my F column and have a running total in the G column beginning in
G2, however...I don't want the figures to appear until I put a figure in the
previous F cell. I hope this makes sense. Please help.

Thomas [PBD]

Help!
 
Skydiver,

One thing you could do is:
Place =F1 in G1
Place =G1+F2 in G2
Copy G2 to the length of your records.

In essence, this will do the following:
F G
100 100
200 300
300 600
400 1000



--
--Thomas [PBD]
Working hard to make working easy.


"Skydiver" wrote:

I have a figure in F1. In G1 is a copy of F1. I want to continue entering
figures in my F column and have a running total in the G column beginning in
G2, however...I don't want the figures to appear until I put a figure in the
previous F cell. I hope this makes sense. Please help.


Sheeloo[_2_]

Help!
 
Enter
=F1 in G2
Enter
=IF(F2<"",F2+G2,"") in G3 and copy down...

"Thomas [PBD]" wrote:

Skydiver,

One thing you could do is:
Place =F1 in G1
Place =G1+F2 in G2
Copy G2 to the length of your records.

In essence, this will do the following:
F G
100 100
200 300
300 600
400 1000



--
--Thomas [PBD]
Working hard to make working easy.


"Skydiver" wrote:

I have a figure in F1. In G1 is a copy of F1. I want to continue entering
figures in my F column and have a running total in the G column beginning in
G2, however...I don't want the figures to appear until I put a figure in the
previous F cell. I hope this makes sense. Please help.


Thomas [PBD]

Help!
 
Sheeloo,

If you do this, then if someone has a space in say... F3 but data in F4 the
command will return #VALUE.
For Example:
100 100
200 300
300 600

500 #VALUE!

Granted, I dont know why someone would leave a space, but it could happen.

--
--Thomas [PBD]
Working hard to make working easy.


"Sheeloo" wrote:

Enter
=F1 in G2
Enter
=IF(F2<"",F2+G2,"") in G3 and copy down...

"Thomas [PBD]" wrote:

Skydiver,

One thing you could do is:
Place =F1 in G1
Place =G1+F2 in G2
Copy G2 to the length of your records.

In essence, this will do the following:
F G
100 100
200 300
300 600
400 1000



--
--Thomas [PBD]
Working hard to make working easy.


"Skydiver" wrote:

I have a figure in F1. In G1 is a copy of F1. I want to continue entering
figures in my F column and have a running total in the G column beginning in
G2, however...I don't want the figures to appear until I put a figure in the
previous F cell. I hope this makes sense. Please help.


Skydiver

Help!
 
Okay I did this, but I don't want the running totals to appear until I place
the previous figure in. In other words, I've copied the formula all the way
down to where I need it, but the running totals are displayed all down that
column.

"Thomas [PBD]" wrote:

Skydiver,

One thing you could do is:
Place =F1 in G1
Place =G1+F2 in G2
Copy G2 to the length of your records.

In essence, this will do the following:
F G
100 100
200 300
300 600
400 1000



--
--Thomas [PBD]
Working hard to make working easy.


"Skydiver" wrote:

I have a figure in F1. In G1 is a copy of F1. I want to continue entering
figures in my F column and have a running total in the G column beginning in
G2, however...I don't want the figures to appear until I put a figure in the
previous F cell. I hope this makes sense. Please help.


Skydiver

Help!
 
Perfect! Thank you, thank you, thank you!!!!!!!!!!!!!!!!!!!!!!!!

"Sheeloo" wrote:

Enter
=F1 in G2
Enter
=IF(F2<"",F2+G2,"") in G3 and copy down...

"Thomas [PBD]" wrote:

Skydiver,

One thing you could do is:
Place =F1 in G1
Place =G1+F2 in G2
Copy G2 to the length of your records.

In essence, this will do the following:
F G
100 100
200 300
300 600
400 1000



--
--Thomas [PBD]
Working hard to make working easy.


"Skydiver" wrote:

I have a figure in F1. In G1 is a copy of F1. I want to continue entering
figures in my F column and have a running total in the G column beginning in
G2, however...I don't want the figures to appear until I put a figure in the
previous F cell. I hope this makes sense. Please help.


Sheeloo[_2_]

Help!
 
I realize that...
I normally try to give the answer which just answers the question so that
the person asking it can play around and improve upon it...

a better solution would have been to enter in G2
=IF(F1<"",SUMIF(($F$1:F1),"<"""),"")
and copy down...

"Thomas [PBD]" wrote:

Sheeloo,

If you do this, then if someone has a space in say... F3 but data in F4 the
command will return #VALUE.
For Example:
100 100
200 300
300 600

500 #VALUE!

Granted, I dont know why someone would leave a space, but it could happen.

--
--Thomas [PBD]
Working hard to make working easy.


"Sheeloo" wrote:

Enter
=F1 in G2
Enter
=IF(F2<"",F2+G2,"") in G3 and copy down...

"Thomas [PBD]" wrote:

Skydiver,

One thing you could do is:
Place =F1 in G1
Place =G1+F2 in G2
Copy G2 to the length of your records.

In essence, this will do the following:
F G
100 100
200 300
300 600
400 1000



--
--Thomas [PBD]
Working hard to make working easy.


"Skydiver" wrote:

I have a figure in F1. In G1 is a copy of F1. I want to continue entering
figures in my F column and have a running total in the G column beginning in
G2, however...I don't want the figures to appear until I put a figure in the
previous F cell. I hope this makes sense. Please help.


Thomas [PBD]

Help!
 
Skydiver,

Maybe trying this code will work out better for you, place into G2.

=IF(G1="","",IF(F2+G1=G1,"",F2+G1))

--
--Thomas [PBD]
Working hard to make working easy.


"Skydiver" wrote:

Okay I did this, but I don't want the running totals to appear until I place
the previous figure in. In other words, I've copied the formula all the way
down to where I need it, but the running totals are displayed all down that
column.

"Thomas [PBD]" wrote:

Skydiver,

One thing you could do is:
Place =F1 in G1
Place =G1+F2 in G2
Copy G2 to the length of your records.

In essence, this will do the following:
F G
100 100
200 300
300 600
400 1000



--
--Thomas [PBD]
Working hard to make working easy.


"Skydiver" wrote:

I have a figure in F1. In G1 is a copy of F1. I want to continue entering
figures in my F column and have a running total in the G column beginning in
G2, however...I don't want the figures to appear until I put a figure in the
previous F cell. I hope this makes sense. Please help.


Skydiver

Help!
 
Okay, this one worked. Yeaaaaaaahhhh! Thank you guys. You all are
lifesavers!!!

"Sheeloo" wrote:

I realize that...
I normally try to give the answer which just answers the question so that
the person asking it can play around and improve upon it...

a better solution would have been to enter in G2
=IF(F1<"",SUMIF(($F$1:F1),"<"""),"")
and copy down...

"Thomas [PBD]" wrote:

Sheeloo,

If you do this, then if someone has a space in say... F3 but data in F4 the
command will return #VALUE.
For Example:
100 100
200 300
300 600

500 #VALUE!

Granted, I dont know why someone would leave a space, but it could happen.

--
--Thomas [PBD]
Working hard to make working easy.


"Sheeloo" wrote:

Enter
=F1 in G2
Enter
=IF(F2<"",F2+G2,"") in G3 and copy down...

"Thomas [PBD]" wrote:

Skydiver,

One thing you could do is:
Place =F1 in G1
Place =G1+F2 in G2
Copy G2 to the length of your records.

In essence, this will do the following:
F G
100 100
200 300
300 600
400 1000



--
--Thomas [PBD]
Working hard to make working easy.


"Skydiver" wrote:

I have a figure in F1. In G1 is a copy of F1. I want to continue entering
figures in my F column and have a running total in the G column beginning in
G2, however...I don't want the figures to appear until I put a figure in the
previous F cell. I hope this makes sense. Please help.



All times are GMT +1. The time now is 08:21 PM.

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