Hi,
As a result of the custom formula in the structure I need to get the date when the issue was in status1, if this issue was not in status1 at all I need to see Status2.
My formula looks like this:
With Display1 = IF Issuetype = "story" and LastTransitionToINPROGRESS !=0 : CONCAT(FORMAT_DATETIME(LastTransitionToINPROGRESS;"dd.MM.yyyy")):
With Display2 = IF Issuetype = "story" and LastTransitionToINPROGRESS =0 : CONCAT(FORMAT_DATETIME(LastTransitionInCodeReview;"dd.MM.yyyy")):
Hello @Iryna Notkina
You can try a formula like this:
with Display1=CONCAT(FORMAT_DATETIME(LastTransitionToINPROGRESS;"dd.MM.yyyy")):
with Display2=CONCAT(FORMAT_DATETIME(LastTransitionInCodeReview;"dd.MM.yyyy")):
if issuetype = "story":
if LastTransitionToINPROGRESS: Display1 else
Display2
I hope this helps. If you need further assistance or have other questions about Structure, please reach out to us directly at our support portal and we'll get back to you shortly.
Best regards,
Stepan
Tempo (the Structure app vendor)
Thank you a lot! It works
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.