Forum Discussion
MonicaPeppin
Oct 04, 2024Copper Contributor
Formula/Function for adding cells that have are less than values
Can someone assit me with which formula to use to add cells together that contain the less than symbol for numbers from lab analysis results? I have attached a snip it for reference.
Need to know ASAP.
MPTotal each Row for four columns
3 Replies
Sort By
- Patrick2788Silver Contributor
A solution with BYROW:
=LET( numbers, 1 * TEXTAFTER(matrix, "<", , , , matrix), BYROW(numbers, SUM) )
Matrix being C7:G11
- OliverScheurichGold Contributor
- m_tarlerBronze Contributor
try:
=SUM(--SUBSTITUTE(A1:A5,"<",""))
where A1:A5 is the range you need to sumalternatively
=SUM(IF(ISNUMBER(A1:A5),A1:A5,--MID(A1:A5,2,99)))
in this case it will remove the 1st character if it isn't a number so ">999" would also become a number (999)