May 31, 2022 09:28 AM
Any ideas how to write an IF code for hotel VAT?
I have 50 hotel nights showing in column {Nights} multiplied by the {nightly rate} @ £200/night = £10,000
VAT is calculated @ 20% on top of the first 28 nights and then @ 5% from the 29th night onwards.
I would love a formula that can calculate this.
Solved! Go to Solution.
May 31, 2022 10:25 AM
Welcome to the Airtable community!
Does this work for you?
SUM(
(
IF("VAT rate for first 28 nights", 0.2)
* IF({Nights} <= 28, {Nights}, 28)
* {nightly rate}
),
(
IF("VAT rate for nights 29+", 0.05)
* IF({Nights} > 28, {Nights} - 28, 0)
* {nightly rate}
)
)
May 31, 2022 10:25 AM
Welcome to the Airtable community!
Does this work for you?
SUM(
(
IF("VAT rate for first 28 nights", 0.2)
* IF({Nights} <= 28, {Nights}, 28)
* {nightly rate}
),
(
IF("VAT rate for nights 29+", 0.05)
* IF({Nights} > 28, {Nights} - 28, 0)
* {nightly rate}
)
)
May 31, 2022 10:49 AM
Oh wow – that worked! Amazing! Thank you so much!