frustrated_macro
New Member
- Joined
- Sep 4, 2019
- Messages
- 49
- Office Version
- 365
- Platform
- Windows
So i have to compare a list of dates to see if the delivery of materials is late
Lets say:
in column A i have the Regions estimated delivery
in column B i have the expected delivery
in column C i have a formula that tells me if X date is before today, making it late
The report recently changed. Right now, in C i have the following formula =IF(A7<=TODAY(),"YES.","NO.")
So now i need to be able to tell excel
Im not sure if thats a macro thing, or just a complex formula
Also, this formula is currently a step in a macro to fill in and format a certain way so it would be great if i could just alter the formula to match the new conditions
Lets say:
in column A i have the Regions estimated delivery
in column B i have the expected delivery
in column C i have a formula that tells me if X date is before today, making it late
The report recently changed. Right now, in C i have the following formula =IF(A7<=TODAY(),"YES.","NO.")
So now i need to be able to tell excel
- If there is a date in A, but nothing in B =IF(A7<=TODAY(),"YES.","NO.")
- If there is a date in A and a date in B =IF(B7<=TODAY(),"YES.","NO.")
- If there no date in A and yes a date in B =IF(B7<=TODAY(),"YES.","NO.")
Im not sure if thats a macro thing, or just a complex formula
Also, this formula is currently a step in a macro to fill in and format a certain way so it would be great if i could just alter the formula to match the new conditions
Last edited: