Aug 31, 2022 04:29 PM
I’m hoping the community can help me out. I think that my formula is a bit off.
Here’s the logic I’m trying to do in the Difference field:
As you can see, if Baseline Value is 0 or empty, there’s an error
My current formula:
IF({Baseline} != BLANK(),
IF({Baseline value} != BLANK(),
(INT({Target value}-{Baseline value})/{Baseline value}),
IF({Baseline value} = 0,
INT({Target value}),
BLANK()
)
)
Solved! Go to Solution.
Aug 31, 2022 08:34 PM
IF(
{Baseline value} & "",
IF(
{Baseline value},
({Target value} - {Baseline value}) / {Baseline value},
{Target value}
)
Aug 31, 2022 06:39 PM
Hey @Diane_Martinez!
Give this a shot:
IF(
{Baseline},
IF(
{Baseline value} = 0,
INT({Target value}),
INT(({Target value} - {Baseline value}) / {Baseline value})
)
)
I’m in the middle of working on your other post from earlier, so I’m online.
Let me know if you have any issues, or questions, or are curious to see what else you might want to do.
Aug 31, 2022 08:34 PM
IF(
{Baseline value} & "",
IF(
{Baseline value},
({Target value} - {Baseline value}) / {Baseline value},
{Target value}
)
Sep 01, 2022 09:28 AM
Sorry, that came back with having errors
Sep 01, 2022 09:30 AM
you absolutely rock @kuovonne
many many thanks
Sep 01, 2022 09:38 AM
Just so that I can update my original reply with an edit, I was curious if your table has the {Baseline}
field, or if it was supposed to be the {Baseline value}
field.
IF({Baseline} != BLANK(),
When I tested it yesterday and configured it with the {Baseline}
field, I returned this behavior: