Hi again,
I am sorry for coming back to this, but that code works fine when I have more than one visible row in the table body. With no visible cells on the table body, it give the same count as with one visible row, 1.
I am using the code specially to find if is there any entry or not and use it in case it exists. Can you please have a look on the code?
Thank you!
Also the statement does not work then there are no visible rows in the table body.
LRC = Contracts.Cells(Rows.Count, 1).End(xlUp).Row
For x = 2 To LRC
With Worksheets("Billing").ListObjects("tabBilling")
On Error Resume Next
With .Range
.AutoFilter
.AutoFilter 3, Contracts.Cells(x, 2)
.AutoFilter Field:=4, Criteria1:=xlFilterThisMonth, Operator:=xlFilterDynamic
End With
On Error Resume Next
Set Rng = .DataBodyRange.SpecialCells(xlCellTypeVisible)
myVal = Billing.AutoFilter.Range.Columns(1).SpecialCells(xlCellTypeVisible).Count
On Error GoTo 0
If Not myVal = 1 Then
Billrow = Rng.Row
Contracts.Cells(x, 27) = Billing.Cells(Billrow, 11)
Else
Contracts.Cells(x, 27) = ""
End If
End With
Next x
Bookmarks