SOLVED

Something like =NOW(IF A1496 = "Ordered")

Copper Contributor

Can I write a formula to conditionally set a column to display the date a different column (which is a drop-down menu) is set to a certain string?

2 Replies
best response confirmed by allyreckerman (Microsoft)
Solution

@brentKM_VU 

Try

=IF(A1496="Ordered",NOW(),"")

Remark: the result of the formula will be updated each time the sheet is recalculated.

If you want to record the time that A1496 is changed to Ordered, you'd need VBA code.

Perfect. Thank you!
1 best response

Accepted Solutions
best response confirmed by allyreckerman (Microsoft)
Solution

@brentKM_VU 

Try

=IF(A1496="Ordered",NOW(),"")

Remark: the result of the formula will be updated each time the sheet is recalculated.

If you want to record the time that A1496 is changed to Ordered, you'd need VBA code.

View solution in original post