StephenP
(Stephen Prince)
December 28, 2022, 10:02pm
1
i am getting ‘true’ where i think i should be getting a #value .
i am trying to calculate age for multiple status.
if status is ‘delivered’ then calculate days between ‘sold’ date and ‘grounding’ date.
if not status is not ‘delivered’ but is ‘grounded’ then calculate days between today and ‘grounding’ date.
if any other status other than ‘delivered’ or ‘grounded’ the age should be blank
my current formula: IF({Status}=“Delivered”,DAYS({SOLD DATE},{GROUNDED DATE},IF({Status}=“Grounded”,DAYS({GROUNDED DATE},TODAY(),“”))))
StephenP
(Stephen Prince)
December 29, 2022, 2:22pm
2
i appreciate any help getting this formula correct!
StephenP
(Stephen Prince)
December 29, 2022, 3:23pm
3
@JCorrell i have seen your great help for others…have any ideas on my formula? it seems as if the different groups is the issue. i can do a ‘one’ if statement and that particular status/group works perfectly (showing blank value for the ‘“”’)…but all other status/groups only show ‘true’
JCorrell
(Jim - The Monday Man)
December 29, 2022, 10:06pm
4
@StephenP
Looks to be just a couple of misplaced ")"s.
Try this:
IF({Status}="Delivered",
DAYS({SOLD DATE},{GROUNDED DATE}),
IF({Status}="Grounded",
DAYS({GROUNDED DATE},TODAY())
,""
)
)
Jim - The Monday Man
Update Magic #1 – New update enhancement toolbox
Column Magic – The magical columns toolbox
We Create Custom Apps, Integrations & Automations for monday
1 Like
StephenP
(Stephen Prince)
December 30, 2022, 1:58pm
5
thank you very much. happy new year
1 Like