VBA Code:
Its been a while for me, however, I have recently started a new job that calls on my excel skills again and so here I am, looking for some guidance

I am trying to create some code that copies a range of cells, if a certain cell is populated with a number
I then want to open another workbook, find the next blank row and paste that data as special values.
I also want to loop this across all rows in the first spreadsheet. There are 36 rows in this first spreadsheet and I want to check each row individually for a value greater than 0. If that row has a value greater than 0 I want to copy the range.
I have been trying to get it to work just for one row, but cant seem to get it to paste special values into the new sheet

Here is what I have so far;
Code:
Sub TestAPR()
'Test if the value is APR is blank/empty
If IsEmpty(Range("U5").Value) = True Then
ActiveSheet.Range("A5:I5").Select
ActiveSheet.Range("A5:I5").Copy
Call OpenRTEBible
End If
End Sub
______________________________________________________________________________________________________________________________________________
Sub OpenRTEBible()
Dim wb As Workbook
Dim myfilename As String
myfilename = "H:\RTE Bible test.xlsx"
'~~> open the workbook and pass it to workbook object variable
Set wb = Workbooks.Open(myfilename)
End Sub
Thanks in advance
