Try this:
Sub Whatever(): Dim wc As Worksheet, wr As Worksheet, r As Long, c As Long
Set wc = Sheets("Checking Sheet"): Set wr = Sheets("Results Sheet")
r = wr.Range("A" & Rows.count).End(xlUp).Row + 1
For c = 3 To wc.Range("B" & Rows.count).End(xlUp).Row
If LCase(wc.Cells(c, 2)) = "no" Then wc.Cells(c, 3).Copy wr.Cells(r, 1)
r = r + 1: Next c: End Sub
BTW:Administrative Note:
Welcome to the forum. 
You need to include code tags around your code.
Please take a moment to add the tags. Posting code between tags makes your code much easier to read and copy for testing, and it also maintains VBA formatting.
Please see Forum Rule #2 about code tags and adjust accordingly. Click on Edit to open your post, then highlight your code and click the # icon at the top of your post window. More information about these and other tags can be found here
Please attend to this as I should not have offered any code.
Bookmarks