Samadhan Gaikwad
Member
Code:
Sub test()
Set EMEA = Sheets("Download_PRdata2").Columns("F").Find(What:="Files are on EMEA server, couldn't download")
ival = Application.WorksheetFunction.CountIf(Range("F:F"), "Files are on EMEA server, couldn't download")
If ival > 1 Then
MsgBox "PR data files which are Internal is completed." & vbCrLf & "There are " & Chr(34) & ival & Chr(34) & " PR data files located on at EMEA server."
Else
MsgBox "Download Completed."
End If
End Sub