Please provide Excel formula and show in Excel.
In addition to the school-based financial aid, the department of finance and marketing have their own extra budget to offer financial aid to the students based on their GMAT score. Write a function in cell I2 that returns “not qualified” if the GMAT score of the applicants is below 600 or they are from Information Systems department. Otherwise, the function should assign the appropriate scholarship to the applicants of each department based on the GMAT score.

Please do Upvote if you are served. Feel free to reach out in the comments
Cheers!!!
Answer:
Assuming 'C' is the column containing the subjects Finance, Marketing and Information systems,
The cell formula to be inserted in I2 is
=IF(AND(C2="Finance",AND(E2>599,E2<649)),"1000",IF(AND(C2="Finance",AND(E2>649,E2<699)),"5000",IF(AND(C2="Finance",AND(E2>699,E2<900)),"10000",IF(AND(C2="Marketing",AND(E2>599,E2<649)),"2000",IF(AND(C2="Marketing",AND(E2>649,E2<699)),"4000",IF(AND(C2="Marketing",AND(E2>699,E2<900)),"8000","Not Qualified"))))))
Please provide Excel formula and show in Excel. In addition to the school-based financial aid, the...