A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data
Hi Jason Nelson,
Good day! Thank you for reaching out to Microsoft Q&A forum and sharing the detail.
Based on your requirements to categorize values as "Small", "Medium", or "Large", you can use the IFS function in Excel to evaluate the number ranges accordingly. However, there appears to be a small inconsistency in the number boundaries provided. To clarify, if your intent is to define "Small" as less than 35,000, "Medium" as values greater than 35,000 and up to 150,000, and "Large" as any value above 150,000, then the following formula can be used:
=IFS(A1<35000, "Small", A1<=150000, "Medium", A1>150000, "Large")
Kindly ensure that your numeric thresholds are consistent and without gaps.
Please free fee to reach out if you need any adjustments or further clarification.
If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment”.
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.