Hello all,
I am trying to make a macro that will calculate information and then display the information in two locations. I have worked everything out But the following:
This code should Find the first blank row Starting from B20. Please note that there is text below at B24 and text above at B14. I would like to have it start searching from B20 and look downwards as opposed to upwards from the beginning of the report.
I am trying to make a macro that will calculate information and then display the information in two locations. I have worked everything out But the following:
PHP:
'Report First Row
If Rws.Range("B20").Value <> "" Then
RRow = Rws.Range("B20").End(xlDown).Row + 1
Else
RRow = Rws.Range("B" & Rows.Count).End(xlUp).Row + 1
End If
This code should Find the first blank row Starting from B20. Please note that there is text below at B24 and text above at B14. I would like to have it start searching from B20 and look downwards as opposed to upwards from the beginning of the report.