Created
October 19, 2012 16:00
-
-
Save BlaneCordes/3919017 to your computer and use it in GitHub Desktop.
Macro in progress
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sub Pipeline() | |
'Module 3 | |
'Iterating through the Funding Date Column and looking for clients going live within 30 days | |
'Selecting the rows for each client in that target range | |
'TODO: Export information into an email template in Outlook | |
'TODO: Send email to distribution list | |
Dim fundingDate As range | |
Set fundingDate = range("M4:M500") | |
Dim todaysDate As Date | |
todaysDate = Date | |
For Each cell In fundingDate | |
If cell < todaysDate + 30 Then | |
Rows.Select | |
'cell.Font.ColorIndex = 5 | |
Else | |
cell.Font.ColorIndex = 3 | |
End If | |
Next | |
End Sub |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment