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:
- If Baseline Value is empty, leave Difference empty
- If Baseline Value is 0, use the value in Target value
- If Baseline Value is NOT empty, calculate Target value minus Baseline value divided by Baseline value so I can get the percentage difference
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()
)
)