dpaton05
Well-known Member
- Joined
- Aug 14, 2018
- Messages
- 2,375
- Office Version
- 365
- 2016
- Platform
- Windows
I have a spreadsheet with a table in it. At the bottom of the table is a field where the GST is calculated for entries in the table. The GST is 10% of the value. I had the following code in it that calculated the GST correctly:
There are multiple types of services that are selected and they give different prices but all of them have the same GST applied to them. The only exception to this is if the Service column has "Activities" selected. In this case, they don't attract GST so if Activities is selected in the service drop down list, I don't want GST applied to that row. How do I write the formula?
Thanks,
Dave
Code:
=ROUNDDOWN(SUM(npss_quote[Price
ex. GST])*0.1,2)
There are multiple types of services that are selected and they give different prices but all of them have the same GST applied to them. The only exception to this is if the Service column has "Activities" selected. In this case, they don't attract GST so if Activities is selected in the service drop down list, I don't want GST applied to that row. How do I write the formula?
Thanks,
Dave