Current XL Sheet (Before Macro):
http://g.imageshack.us/g.php?h=383&i=beforeif8.png
After Macro XL Sheet (After Macro):
http://g.imageshack.us/g.php?h=383&i=afteroz1.png
*****************************************************
Before XL Sheet: All the formulas are in place. The data in the Column C is formatted white.
After the Macro is run I would like all that data to turn Black and then fill the "FALSE" rows to be Red.
So far the code I have is:
Sub Correction_Macro()
Range("C1").Select
Selection.FormatConditions.Delete
Selection.FormatConditions.Add Type:=xlExpression, Formula1:= _
"=INT(C1)=FALSE"
Selection.FormatConditions(1).Interior.ColorIndex = 2
Selection.Copy
FinalRow = Range("C15000").End(xlUp).Row
Range("C2:C" & FinalRow).Select
Selection.PasteSpecial Paste:=xlPasteFormats
End Sub
Help would be greatly appreciated, THANKS!

http://g.imageshack.us/g.php?h=383&i=beforeif8.png
After Macro XL Sheet (After Macro):

http://g.imageshack.us/g.php?h=383&i=afteroz1.png
*****************************************************
Before XL Sheet: All the formulas are in place. The data in the Column C is formatted white.
After the Macro is run I would like all that data to turn Black and then fill the "FALSE" rows to be Red.
So far the code I have is:
Sub Correction_Macro()
Range("C1").Select
Selection.FormatConditions.Delete
Selection.FormatConditions.Add Type:=xlExpression, Formula1:= _
"=INT(C1)=FALSE"
Selection.FormatConditions(1).Interior.ColorIndex = 2
Selection.Copy
FinalRow = Range("C15000").End(xlUp).Row
Range("C2:C" & FinalRow).Select
Selection.PasteSpecial Paste:=xlPasteFormats
End Sub
Help would be greatly appreciated, THANKS!