Hi All,
I’m trying to figure out a formula I can use that will create a timestamp (format of mm/dd/yyy hh am/pm) based off specific selections chosen from a drop down menu in another cell. I’m looking to copy this formula into multiple cells within that same column. I have a couple of conditions it needs to meet:
1) drop down selection that should trigger the timestamp does not have a single name to it, it begins with the main status and then has names after it. For example; “On Hold - John”, “On Hold - Karen”. The common theme is the “On Hold” portion of the text. When any status is chosen that has “On Hold” in it, the timestamp should appear. The other constraint is that this drop down is shared with several other statuses, so I can’t simply use a formula that checks if the column is blank or non-blank.
2) the status drop down will change at some point, but I need that timestamp to remain intact after the status changes from “On Hold..” to the new status.
The first condition is what has left me stumped. If it was as simple as the cell being changed from blank to non-blank I could use the following formula: =IF(AB2<>””,IF(AE2=“”,NOW(),AE2),””)
Another constraint is that this is a shared spreadsheet amongst several people that have various levels of excel skills, ranging from novice to intermediate, so I’d like to keep this as a formula vs VBA if at all possible (if that is not possible, I’m open to code that automates this process and doesn’t require manual intervention). The assistance with this will be greatly appreciated!
I’m trying to figure out a formula I can use that will create a timestamp (format of mm/dd/yyy hh am/pm) based off specific selections chosen from a drop down menu in another cell. I’m looking to copy this formula into multiple cells within that same column. I have a couple of conditions it needs to meet:
1) drop down selection that should trigger the timestamp does not have a single name to it, it begins with the main status and then has names after it. For example; “On Hold - John”, “On Hold - Karen”. The common theme is the “On Hold” portion of the text. When any status is chosen that has “On Hold” in it, the timestamp should appear. The other constraint is that this drop down is shared with several other statuses, so I can’t simply use a formula that checks if the column is blank or non-blank.
2) the status drop down will change at some point, but I need that timestamp to remain intact after the status changes from “On Hold..” to the new status.
The first condition is what has left me stumped. If it was as simple as the cell being changed from blank to non-blank I could use the following formula: =IF(AB2<>””,IF(AE2=“”,NOW(),AE2),””)
Another constraint is that this is a shared spreadsheet amongst several people that have various levels of excel skills, ranging from novice to intermediate, so I’d like to keep this as a formula vs VBA if at all possible (if that is not possible, I’m open to code that automates this process and doesn’t require manual intervention). The assistance with this will be greatly appreciated!