Copy last entry of column to bottom of column

  • Thread starter Thread starter jimmy_v_12
  • Start date Start date
J

jimmy_v_12

I am using a simple formula to keep track of some stocks, i.e. D2=Sum(B2*C2).
This formula is repeated in rows 2 thru 31. In cell D34 I want to display
the last previous entry in column D.

Thank you for your assistance.
 
Not sure I underatand what "last previous entry" means.

See if this does what you want:

=IF(COUNT(D2:D31),LOOKUP(1E100,D2:D31),"")
 
Back
Top