Assign a score for a GPA
Charlene Stacy
✭✭✭✭✭
I need a formula that says, IF GPA column less than 3.0 assign a 0, if it is 3.0 - 3.49 assign 2 pts, if it is 3.5 - 3.89 assign 3 pts and if 3.9 - 4.0 assign 4 pts
The formula I'm using is, =IF(GPA@row, <3, 0, =IF(GPA@row, =3 - 3.49, 2, =IF(GPA@row, =3.5 - 3.89, 3, IF(GPA@row, =3.9 - 4, 4))))
Thanks for the help.
Best Answer
-
Try this...
=IF(GPA@row < 3, 0, IF(GPA@row < 3.49, 2, IF(GPA@row < 3.89, 3, 4)))
Answers
-
Try this...
=IF(GPA@row < 3, 0, IF(GPA@row < 3.49, 2, IF(GPA@row < 3.89, 3, 4)))
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 64.8K Get Help
- 434 Global Discussions
- 138 Industry Talk
- 470 Announcements
- 4.9K Ideas & Feature Requests
- 129 Brandfolder
- 148 Just for fun
- 65 Community Job Board
- 486 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 300 Events
- 36 Webinars
- 7.3K Forum Archives
Want to practice working with formulas directly in Smartsheet?
Check out the Formula Handbook template!
Check out the Formula Handbook template!