I am trying to create a column formula that does the following. If the application is Declined or Withdrawn then cost is 0. If not, then based on each course we offer, it puts the cost of the course. This is the formula I have as of right now but it is very messy and not working.
=OR(IF(IF(OR([Application Status]@row = "Declined", [Application Status]@row = "Withdrawn", [Application Status]@row = "Expired"), 0), IF([PLTW Course Teacher was Trained In]@row = "Launch Classroom Teacher Training", 500), IF([PLTW Course Teacher was Trained In]@row = "Launch Lead Teacher Training", 700), IF([PLTW Course Teacher was Trained In]@row = OR("Energy and the Environment", "Green Architecture", "Magic of Electrons", "Science of Technology"), 750), IF([PLTW Course Teacher was Trained In]@row = OR("App Creators", "Automation and Robotics", "Computer Science for Innovators and Makers", "Design and Modeling", "Flight and Space", "Medical Detectives"), 1200), 2400))