Blank Rows Count

nidhipatel

Board Regular
Joined
Feb 11, 2017
Messages
52
in this macro count last blank cell but i need count last blank Rows what is correction in this macro

Sub FillDateSenderFrom()

For i = 1 To 3
If Controls("TextBox" & i) <> "" Then
If i = 1 Then

Cells(Rows.Count, 4).End(xlUp).End(xlToLeft).Offset(0, i - 1).Select

Range(ActiveCell, ActiveCell.End(xlUp).Offset(1, 0)).Value = Controls("TextBox" & i).Text
Else

Cells(Rows.Count, 4).End(xlUp).End(xlToLeft).Offset(0, 1).Select

Range(ActiveCell, ActiveCell.End(xlUp).Offset(1, 0)).Value = Controls("TextBox" & i).Text
End If
End If
Next i



End Sub
 

Excel Facts

When did Power Query debut in Excel?
Although it was an add-in in Excel 2010 & Excel 2013, Power Query became a part of Excel in 2016, in Data, Get & Transform Data.
a bit confused... do you want last Blank Row in sheet?

if yes here you go.

Code:
Function FindLstBlankRow(sht As Worksheet)
Dim rng As Range
Set rng = sht.Cells.Find(What:="*", SearchOrder:=xlByRows, SearchDirection:=xlPrevious)
If Not rng Is Nothing Then
    FindLstBlankRow = (rng.Row) + 1
End If
End Function
 
Last edited:
Upvote 0
Cross posted https://www.ozgrid.com/forum/forum/help-forums/excel-vba-macros/1201795-last-blank-rows-count

Cross-Posting
While we do not prohibit Cross-Posting on this site, we do ask that you please mention you are doing so and provide links in each of the threads pointing to the other thread (see rule 13 here along with the explanation: Forum Rules).
This way, other members can see what has already been done in regards to a question, and do not waste time working on a question that may already be answered.
 
Upvote 0

Forum statistics

Threads
1,215,268
Messages
6,123,972
Members
449,137
Latest member
yeti1016

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top