Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
DAShields
 
Posts: n/a
Default calculating from last inputted cell

I need a formula to recognize the last cell in a column with entered data.
The formula needs to disregard earlier entries in the column. To then take
the last entered value and multiply it by the remaining empty cells in the
given range.

  #2   Report Post  
Bob Phillips
 
Posts: n/a
Default

If you multiply anything by an empty cell, don't you get nothing?

--

HTH

RP
(remove nothere from the email address if mailing direct)


"DAShields" wrote in message
...
I need a formula to recognize the last cell in a column with entered data.
The formula needs to disregard earlier entries in the column. To then

take
the last entered value and multiply it by the remaining empty cells in the
given range.



  #3   Report Post  
DAShields
 
Posts: n/a
Default

I guess what I meant to ask was: multiply by the number (or count) of
remaining empty cells. Thanks for pointing this mistake out. DAShields

"Bob Phillips" wrote:

If you multiply anything by an empty cell, don't you get nothing?

--

HTH

RP
(remove nothere from the email address if mailing direct)


"DAShields" wrote in message
...
I need a formula to recognize the last cell in a column with entered data.
The formula needs to disregard earlier entries in the column. To then

take
the last entered value and multiply it by the remaining empty cells in the
given range.




  #4   Report Post  
Peo Sjoblom
 
Posts: n/a
Default

Assuming there are no empty cells prior to the "last"entered

=INDEX(A1:A100,COUNT(A1:A100))*(ROWS(A1:A100)-COUNT(A1:A100))

--

Regards,

Peo Sjoblom


"DAShields" wrote in message
...
I guess what I meant to ask was: multiply by the number (or count) of
remaining empty cells. Thanks for pointing this mistake out. DAShields

"Bob Phillips" wrote:

If you multiply anything by an empty cell, don't you get nothing?

--

HTH

RP
(remove nothere from the email address if mailing direct)


"DAShields" wrote in message
...
I need a formula to recognize the last cell in a column with entered

data.
The formula needs to disregard earlier entries in the column. To then

take
the last entered value and multiply it by the remaining empty cells in

the
given range.






  #5   Report Post  
DAShields
 
Posts: n/a
Default

Peo, Thank you for your help. Your formula is almost working, however, I
neglected to ask:

Can we also include the sum of the previously entered cells into the
formula? I'm trying to project a year end number, by using the last value
entered to remain static through the end of the year. I hope this is clear.
Thank you once again.

"Peo Sjoblom" wrote:

Assuming there are no empty cells prior to the "last"entered

=INDEX(A1:A100,COUNT(A1:A100))*(ROWS(A1:A100)-COUNT(A1:A100))

--

Regards,

Peo Sjoblom


"DAShields" wrote in message
...
I guess what I meant to ask was: multiply by the number (or count) of
remaining empty cells. Thanks for pointing this mistake out. DAShields

"Bob Phillips" wrote:

If you multiply anything by an empty cell, don't you get nothing?

--

HTH

RP
(remove nothere from the email address if mailing direct)


"DAShields" wrote in message
...
I need a formula to recognize the last cell in a column with entered

data.
The formula needs to disregard earlier entries in the column. To then
take
the last entered value and multiply it by the remaining empty cells in

the
given range.









  #6   Report Post  
Myrna Larson
 
Posts: n/a
Default

Let's say your data is in column A.

This array formula will give you the row number of the last filled cell in
column A:

=MAX(ROW($A$1:$A$10000)*($A$1:$A$10000<""))

The 10000 is some number that is greater than the last filled row, but less
than 65536. Change it if necessary. You must enter the formula with
CTRL+SHIFT+ENTER. Let's say you put it in B1.

Then this formula will give you the last value from column A:

=INDEX($A:$A,B1)

and this one will give you that final amount multiplied by the count of blank
cells above it:

=INDEX($A:$A,B1)*COUNTBLANK(OFFSET($A$1,0,0,B1,1))


On Thu, 3 Mar 2005 10:27:05 -0800, DAShields
wrote:

I need a formula to recognize the last cell in a column with entered data.
The formula needs to disregard earlier entries in the column. To then take
the last entered value and multiply it by the remaining empty cells in the
given range.


Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
WHAT'S THE FORMULA FOR CALCULATING OVERTIME IN 1 CELL? EXAMPLE: 8. garpavco Excel Worksheet Functions 3 August 18th 05 01:22 PM
Exclude a cell from calculating Drew Excel Worksheet Functions 2 February 4th 05 08:05 PM
Calculating on alphabetic cell content Thorkild New Users to Excel 5 January 11th 05 03:12 PM
calculating with a time format cell Mahnaz Excel Worksheet Functions 1 December 13th 04 10:21 AM
GET.CELL Biff Excel Worksheet Functions 2 November 24th 04 07:16 PM


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

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"