Feb 24, 2023 05:56 PM
Hello, I want to calculate the total cost per tickets ONLY IF they are a specific type, and then I want to deduct that from a total amount that I set manually. My fields are currently set up:
Total tickets (# field)
Per ticket cost ($ currency)
Total cost (simple formula: {Per ticket Cost}* {Total Student tickets})
Revenue source (single line text)
Right now, I have "IF({Revenue Source}="X", {Total cost}-40,000)", but it's returning 0. Any tips? Thank you!!
Feb 24, 2023 06:44 PM - edited Feb 24, 2023 06:45 PM
Any chance you could share a screenshot so I can help with troubleshooting? Or if you could provide a link to a base with example data that would be excellent
Feb 24, 2023 07:12 PM
Hey @Shirley_Kawafuc!
I think that the comma in your 40,000 value could be causing unexpected problems.
Try this:
IF(
{Revenue Source} = "X",
{Total cost} - 40000
)
Feb 27, 2023 10:44 AM
Thank you so much @Ben_Young1 and @TheTimeSavingCo! Removing the comma fixed the formula. I'd like the "Deduct Formula" column to continue subtracting from my set total of $40,000 budget IF there is a "Total cost" associated with student tickets (see screenshot). By chance do you know to achieve this? Do I need to add a hidden column that holds just the set budget amount?
Feb 27, 2023 10:58 AM
Hey @Shirley_Kawafuc, are you looking to get something along the lines of this?
Mar 13, 2023 03:39 PM
Hi @Ben_Young1 , yes! The only change is: I want the "Remaining Budget" amount to get smaller and smaller as the total costs accrue, instead of each line starting over from $40,000 every time.
Mar 13, 2023 03:45 PM