I have set range from cell "U7" to "HV7". Purpose of this range is to count values in it.
Current code is working, but I would like to escape possibility of values beyond HV column, by selecting to last value.
Dim countRange As Range
Set countRange = Range("U7:HV7")
Dim rowcount As Long
rowcount = Application.WorksheetFunction.CountA(countRange)