ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   last row value in a range (https://www.excelbanter.com/excel-programming/323278-last-row-value-range.html)

Alvin Hansen[_2_]

last row value in a range
 
Hi

Have a userform in this form i have a textfield
i want to take the last row with value from a sheet into this field

regards alvin


Alvin Hansen[_2_]

last row value in a range
 
I have done it

alvin


"Alvin Hansen" skrev:

Hi

Have a userform in this form i have a textfield
i want to take the last row with value from a sheet into this field

regards alvin


Leith Ross[_5_]

last row value in a range
 

Hello Alvin,

Here is an example. The data is in column "A" on "Sheet1". The TextBo
on the UserForm is TextBox1.


LastRow = Application.WorksheetFunction.CountA("A:A")

TextBox1.Text = Sheets("Sheet1").Cells(LastRow, 1)

__________________________________________________ _______________

The CountA function counts any type of information, including empt
text ("") but not including empty cells. If an argument is an array o
reference, empty cells within the array or reference are ignored. I
you do not need to count logical values, text, or error values, use th
COUNT function.

Also, when changing your column from "A" to whatever, Cells functio
reference is Cells(Row, Column).
__________________________________________________ _______________

Hope this helps,
Leith Ros

--
Leith Ros
-----------------------------------------------------------------------
Leith Ross's Profile: http://www.excelforum.com/member.php...fo&userid=1846
View this thread: http://www.excelforum.com/showthread.php?threadid=34585



All times are GMT +1. The time now is 05:32 AM.

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