Hm, the "minus 4 days" bit confuses me a bit, but on the off chance the following screenshot looks right to you, the formula for `DAYS ON SITE` is below. Do let me know where I got it wrong if I did and I'll see what I can do to help

IF(
{Show Crew},
DATETIME_DIFF({DEPARTURE DATE},{ARRIVAL DATE}, 'DAYS'),
0
)
Hm, the "minus 4 days" bit confuses me a bit, but on the off chance the following screenshot looks right to you, the formula for `DAYS ON SITE` is below. Do let me know where I got it wrong if I did and I'll see what I can do to help

IF(
{Show Crew},
DATETIME_DIFF({DEPARTURE DATE},{ARRIVAL DATE}, 'DAYS'),
0
)
Thanks for the reply Adam.
To clarify the 'minus 4 days', here is an example..
Crew member #1 arrives on the 10th and leaves on the 24th and has indicated, by checking the 'show crew' box, that they are a part of the show crew. The show goes for 4 days. This is 15 days on site, multiplied by 3 meals a days = 75.
Crew member #2 arrives on the 10th and leaves on the 24th and has indicated, by NOT checking the 'show crew' box, that they are NOT a part of the show crew. Therefore, the calculation should be like more like, 15 days onsite, minus 4 days of show (4 days x 3 meals = 12 meals) 15 days x 3 meals = 45 meals MINUS 4 days (show) x 3 meals. 45 meals - 12 meals = 33 meals in total.
I hope that makes more sense. I appreciate your help. Thank you.
Thanks for the reply Adam.
To clarify the 'minus 4 days', here is an example..
Crew member #1 arrives on the 10th and leaves on the 24th and has indicated, by checking the 'show crew' box, that they are a part of the show crew. The show goes for 4 days. This is 15 days on site, multiplied by 3 meals a days = 75.
Crew member #2 arrives on the 10th and leaves on the 24th and has indicated, by NOT checking the 'show crew' box, that they are NOT a part of the show crew. Therefore, the calculation should be like more like, 15 days onsite, minus 4 days of show (4 days x 3 meals = 12 meals) 15 days x 3 meals = 45 meals MINUS 4 days (show) x 3 meals. 45 meals - 12 meals = 33 meals in total.
I hope that makes more sense. I appreciate your help. Thank you.
Ah, yes, thank you for explaining that to me. I've put something together here that I think does what you're looking for?

The formula in use is:
IF(
{Show Crew},
{DAYS ON SITE} * 3,
({DAYS ON SITE} - {Show Length}) * 3
)
That works a treat! Thank you so much!