Hello,
I want to filter column C (header have 2 rows) that have value = day today
If found write text in text file = yes.
else not found write text in text file = no
Please guide me for solve with VBA.
Thank you.
Hello,
I want to filter column C (header have 2 rows) that have value = day today
If found write text in text file = yes.
else not found write text in text file = no
Please guide me for solve with VBA.
Thank you.
Hi fairyme,
Try the code below. It will place 'Yes' in column E when the date in column 3 = today's date;
![]()
Sub CheckDate() Dim lrow As Integer, i As Integer lrow = Cells(Rows.Count, 1).End(xlUp).Row For i = 3 To lrow If Cells(i, 3) = Date Then Cells(i, 5) = "Yes" Else: Cells(i, 5) = "No" End If Next i End Sub
If your Question is answered; please mark it SOLVED. If you are happy with a member's solution, say 'Thanks' and click the 'Star' to Add Reputation.
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks