Sep 25, 2024 05:14 AM
Hi all - I'm having a very strange issue with a Formula field. I've got a Status field (single select) that informs a Formula field. i.e. if the Status field says ABC, then make the Formula field say XYZ. It's working perfectly except for two outputs. Now here's where it gets weird: after extensive testing, the issue seems to be with the output string, not the input.
IF(
OR(
{Latest CSF Status} = "Submitted - container cleared",
{Latest CSF Status} = "Closed - lost possession of container"
),
"Shipment & CSF complete",
IF(
OR(
Status = "(SH) Post-load sent",
Status = "(SHI) Invoice pulled",
Status = "(SHIPPED) Docs sent"
),
"Container loaded - waiting for CSF",
IF(
Status = "Tentative",
"Waiting for booking & pickup confirmation",
IF(
Status = "Booking received",
"Booking received, waiting for pickup confirmation",
IF(
Status = "Pickup confirmed",
"Booking received & pickup confirmed",
IF(
OR(
Status = "Declined",
Status = "Released",
Status = "Cancelled"
),
"Declined",
IF(
Status = "Hold",
"On Hold",
""
)
)
)
)
)
)
)
Thanks for any help!
Kelsey
Solved! Go to Solution.
Sep 30, 2024 07:56 AM
Thanks for the link!
Yeap, the formula is set to output: Booking received, waiting for pickup confirmation
And the formatting option is set to output: Booking received - waiting for pickup confirmation
Because the formula output doesn't match the formatting option, it just defaults to blank. Once you update all your formatting options to make sure they match your formula outputs it should work fine!
Sep 30, 2024 08:51 AM
Omg. I feel. So dumb. How did I miss that?? I was completely overthinking it.
Thank you for pointing out the obvious! My forehead hurts from facepalming so hard. Let's never speak of this again lol