timwhit
Hairy Aussie
I'm trying to do something in Sharepoint that I thought would be pretty simple, but it turned out to be a huge waste of time. Maybe someone here has enough experience to say whether what I'm trying to do is possible or not.
I want to add a calculated column to a list that captures the date under a couple conditions. The calculated column is called Resolve Date.
1. If the column Status equals "Resolved"
2. If the column Resolve Date is blank
This means that Resolve Date must reference itself, which I think is impossible in Sharepoint.
I thought something along these lines would work:
I also tried to create another calculated column and populate that with Resolve Date, and then reference that column in my Resolve Date but that also resulted in the same problem.
Does anyone know if this is possible some other way?
I want to add a calculated column to a list that captures the date under a couple conditions. The calculated column is called Resolve Date.
1. If the column Status equals "Resolved"
2. If the column Resolve Date is blank
This means that Resolve Date must reference itself, which I think is impossible in Sharepoint.
I thought something along these lines would work:
Code:
=IF((ISBLANK([Resolve Date])),IF([Status]="Resolved",TEXT([Modified],"MM/DD/YYYY"),""),[Resolve Date])
I also tried to create another calculated column and populate that with Resolve Date, and then reference that column in my Resolve Date but that also resulted in the same problem.
Does anyone know if this is possible some other way?