Hello,
I have a VBA routine that does most of what I want. What I’m trying to do is add one more parameter to one line in the code. I think this will work but am not positive. Here is the code I received from a kind member here that mostly works:
What I want is the cells in the range in column “T” to only be updated if the cell directly to the left in column “S” is blank or not populated (i.e., <=0). Column S is formatted as currency; column T is formatted as date.
Thanks for viewing,
Steve
I have a VBA routine that does most of what I want. What I’m trying to do is add one more parameter to one line in the code. I think this will work but am not positive. Here is the code I received from a kind member here that mostly works:
Rich (BB code):
Range("T33:T133").SpecialCells(xlCellTypeBlanks).FormulaR1C1 = "=IF(RC[-2]<=R27C21,1,"""")"
What I want is the cells in the range in column “T” to only be updated if the cell directly to the left in column “S” is blank or not populated (i.e., <=0). Column S is formatted as currency; column T is formatted as date.
Thanks for viewing,
Steve