MEUserII
Board Regular
- Joined
- Oct 27, 2017
- Messages
- 91
- Office Version
- 365
- 2021
- 2019
- 2016
- 2013
- Platform
- Windows
I am trying to write a SUMIFS formula that will sum cells in: $A$2:$A$100, by checking values in $B$2:$B$100 that begin with a number: including cells which are just numbers (ex. 123456) AND cells which contain mixed numbers and letters (ex. 654CBA).
For example, if I want to sum cells beginning with a number in $A$2:$A$100 by checking values in $B$2:$B$100 for cells that contain just numbers - I would use the following formula:
=SUMIFS( ($A$2:$A$100), ($B$2:$B$100), (">=0") )
Another example, if I want to sum cells beginning with a number in $A$2:$A$100 by checking values in $B$2:$B$100 for cells that contain mixed numbers and letters - I would use the following formula:
=SUMIFS( ($A$2:$A$100), ($B$2:$B$100), (">=0"&"*") )
However, how would I write a single SUMIFS formula that would sum all cells $A$2:$A$100 by checking values in $B$2:$B$100 for all cells beginning with a number including: all cells containing just numbers AND all cells containing mixed numbers and letters?
For example, if I want to sum cells beginning with a number in $A$2:$A$100 by checking values in $B$2:$B$100 for cells that contain just numbers - I would use the following formula:
=SUMIFS( ($A$2:$A$100), ($B$2:$B$100), (">=0") )
Another example, if I want to sum cells beginning with a number in $A$2:$A$100 by checking values in $B$2:$B$100 for cells that contain mixed numbers and letters - I would use the following formula:
=SUMIFS( ($A$2:$A$100), ($B$2:$B$100), (">=0"&"*") )
However, how would I write a single SUMIFS formula that would sum all cells $A$2:$A$100 by checking values in $B$2:$B$100 for all cells beginning with a number including: all cells containing just numbers AND all cells containing mixed numbers and letters?
Last edited: