Skip to main content


I have data being automatically being inputted from Stripe to the column on the right.

I need to -2 from the number in the right column and then *87 however I don’t want it to go minus(it does this when there’s no data in the right column). I want 0 to be lowest value it goes.


Could somebody help? ( new to all this…!)


Cheers! :grinning_face_with_big_eyes:

I think you could use something like this:


MAX(
{Stripe Next Sequ...} - 2,
0
) * 87

That way, if {Stripe Next Sequ...} results in a number less than 0, this field will multiply 0 * 87 instead of the negative number.


I think you could use something like this:


MAX(
{Stripe Next Sequ...} - 2,
0
) * 87

That way, if {Stripe Next Sequ...} results in a number less than 0, this field will multiply 0 * 87 instead of the negative number.


Thank you this worked perfectly! Appreciate the help :grinning_face_with_big_eyes:


Legend


Reply