If a cell in sheet one is BOLD, then copy and paste entire row onto sheet 2. or a sheet name,
Option Explicit
Sub TransferDataPlease()
Dim i As Long, n As Long
n = 1
n = n + 1
For i = Range("A65536").End(xlUp).Row To 1 Step -1
If Range("A" & i).Font.Bold = "TRUE" Then
Range("A" & i).EntireRow.Copy Sheets("One").Range("A" & n)
End If
Next i
End Sub
Option Explicit
Sub TransferDataPlease()
Dim i As Long, n As Long
n = 1
n = n + 1
For i = Range("A65536").End(xlUp).Row To 1 Step -1
If Range("A" & i).Font.Bold = "TRUE" Then
Range("A" & i).EntireRow.Copy Sheets("One").Range("A" & n)
End If
Next i
End Sub