Home > Topics > excel > body text

How to use excel to be greater than or less than the corresponding formula

藏色散人
Release: 2020-05-21 09:08:11
Original
30848 people have browsed it

How to use excel to be greater than or less than the corresponding formula

How to use the corresponding formula for greater than or less in excel?

For example, in my EXCEL data, if the score is greater than or equal to 95 points, the grade is A; if the score is less than 95 points and greater than or equal to 85 points, the grade is B; if the score is less than 85 points, the grade is It is grade C.

How to set this formula

Enter

=IF(A1>=500,A1-30,IF(A1>=300,A1-20,IF(A1>=200,A1-10,A1)))
Copy after login

or

=A1-IF(A1>=500,30,IF(A1>=300,20,IF(A1>=200,10,0)))
Copy after login

Recommended: "Excel Tutorial

The above is the detailed content of How to use excel to be greater than or less than the corresponding formula. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!