Auroraborealis
New Member
- Joined
- Mar 7, 2019
- Messages
- 3
Hello,
I am trying to complete the situation stated above. I need a waiting day results. There are 4 related columns.
1rocess column(selecting from drop down list).
2rocess last update date.
3:today's date.
4:waiting time result.
1,3 and 4 is okay. But I need help on second column. When there is any change in first column, then I need to update the date on second column. So I can track the waiting days for a part. For ex: a part's operation selected today, so the second column should show today's date but after 2 days have passed, it should show 2 days ago. Today() formula is keeping up to date the formula itself (this is needed for the third column but not for second.) So the fourth column can show the waiting days. I used that formula:
But its keeping the date updated. I think I can use macro to paste as value, but there are lots of operations for each part, when the first column updated with another process selection, the second row should update itself again so, I need the formula above again. Can anyone help me with that please?
I am trying to complete the situation stated above. I need a waiting day results. There are 4 related columns.
1rocess column(selecting from drop down list).
2rocess last update date.
3:today's date.
4:waiting time result.
1,3 and 4 is okay. But I need help on second column. When there is any change in first column, then I need to update the date on second column. So I can track the waiting days for a part. For ex: a part's operation selected today, so the second column should show today's date but after 2 days have passed, it should show 2 days ago. Today() formula is keeping up to date the formula itself (this is needed for the third column but not for second.) So the fourth column can show the waiting days. I used that formula:
Code:
=IF(A55="","",IF(E55="",TODAY(),E55))
But its keeping the date updated. I think I can use macro to paste as value, but there are lots of operations for each part, when the first column updated with another process selection, the second row should update itself again so, I need the formula above again. Can anyone help me with that please?