link to identify lastest entry in the row

  • Thread starter tikchye_oldLearner57
  • Start date
T

tikchye_oldLearner57

hello community

can community assist me on how to set this task in my worksheet :-

scneario:

i created a record of many rows in worksheet 1 and I wanted it to tell me
whenever there is a last entry into the latest cell (row) in worksheet 1 and
the entry will be shown in worksheet 2 in a specified located cell

hope those who read can understand what I am saying

thanks community
 
M

mrice

You can do this with a simple user defined function

Function GetLastValue(Col As Range)
GetLastValue = Col.Parent.Cells(65536, Col.Column).End(xlUp).Value
End Function
 
Top