marcvanderpeet12
Member
Dear all,
I'm trying to run a macro but get an error. When i'm looking into the code I get this:
[pre]
[/pre]
[edited with backticks]
It seems to be going wrong at the fn_print section. But i cant figure out what the fn function does.
Does anybody know this?
Dear regards,
Marc
I'm trying to run a macro but get an error. When i'm looking into the code I get this:
[pre]
Code:
Sub Pic_PrintData_Click()
Dim iCounter As Integer
For iCounter = 0 To sht_Temp.Range("A65535").End(xlUp).Row - 2
Call fn_Filter(Sheets(sht_Temp.Range("A2").Offset(iCounter, 0).Value), "N", "O", "D", "d")
Call fn_Print(Sheets(sht_Temp.Range("A2").Offset(iCounter, 0).Value))
Next iCounter
MsgBox "Data print setup.", vbOKOnly + vbInformation, "Success!"
End Sub
[edited with backticks]
It seems to be going wrong at the fn_print section. But i cant figure out what the fn function does.
Does anybody know this?
Dear regards,
Marc