Hello everybody,
i am struggling with following function:
=SUMPRODUCT(--(LEFT(B5:I5,FIND(":",B5:I5)-1)))&":"&SUMPRODUCT(--(RIGHT(B5:I5,LEN(B5:I5)-FIND(":",B5:I5))))
it perfectly works if all cells in range are non-empty, but how to include condition if i want to skip empty/blank cells in this case?
To introduce what i want with this calculation, i have matrix (columns, rows) with 8 players and when players have played match there are results in the format e.g. 3:2, if not there are still empty cells. Based on current results i want to calculate total SCORE.
So if i have results: 1:1; 2:1; empty, 3:2 etc and by applying abovementioned formula i want to calculate that current score is 6:4 (and to skip EMPTY one).
i have found lot of examples by using <>"" to exclude empty ones, but it doesnt work.
thanks a lot
Bookmarks