Forum Discussion
DScogg
May 04, 2022Copper Contributor
Excel Formulas
I need assistance with an excel formula to identify cells with the number greater than 100 and then add the amounts over 100. If I have cells 3 thru 8 and two of the cells have 101 and another 150, ...
- May 04, 2022
Let's say you have numbers in A2:A10.
=SUM(IF(A2:A10>100,A2:A10-100))
If you don't have Microsoft 365 or Office 2021, confirm the formula with Ctrl+Shift+Enter.
HansVogelaar
May 04, 2022MVP
Let's say you have numbers in A2:A10.
=SUM(IF(A2:A10>100,A2:A10-100))
If you don't have Microsoft 365 or Office 2021, confirm the formula with Ctrl+Shift+Enter.
- DScoggMay 04, 2022Copper ContributorAwesome. Thank you so much.