Looking for autosum help with numbers, letters and dates

SlurpeeD

New Member
Joined
Jul 25, 2024
Messages
6
Office Version
  1. 365
Platform
  1. Windows
I am trying to figure out the formula to do an auto sum with numbers letters and times in minutes and seconds.

Its basically a weekly tracker. Cells F4 through L4. I want M4 to add the times (ex 2+39), but ignore the X's which represent days off, and numbers which are their employee attributes (these number 1-46).

Thanks!
 
I would like each row to have a sum of hours represented as either 12:51 or 12+51,
See if this does what you want.

24 07 30.xlsm
ABCDEFGHIJKLMNO
1
2TimeImpedTimeImpedTime11TimeImpedTimeImpedTimeImpedTimeImped
3X172+00102+39433+29421+39313442X249+47
40134+26182+2510X27X414+01192+162813+8
53+28413+385X29X183+12204+36422+19817+13
62+3824X20X413+463619414+28214610+52
73+13233+09332+5418X2X1234312+59312+15
84+2882+44302+59163+496X37X243914+0
94+14321+54362+15452+562X2X1342611+19
1025142511251125342539X46X370+0
113+18183+2020X2X283+40224+08183+333617+59
12X2425392518252625292545X10+0
Sum time
Cell Formulas
RangeFormula
O3:O12O3=LET(v,--TEXTSPLIT(TEXTJOIN("+",,FILTER(A3:N3,ISNUMBER(FIND("+",A3:N3)),"0+0")),,"+"),q,SEQUENCE(ROWS(v)/2,,,2),ts,SUM(INDEX(v,q+1)),s,MOD(ts,60),SUM(INDEX(v,q))+(ts-s)/60&"+"&s)
 
Upvote 0

Excel Facts

Quick Sum
Select a range of cells. The total appears in bottom right of Excel screen. Right-click total to add Max, Min, Count, Average.
Another option:

Book5.xlsx
ABCDEFGHIJKLMNO
1
2TimeImpedTimeImpedTime11TimeImpedTimeImpedTimeImpedTimeImpedTotal time
3X172+00102+39433+29421+39313442X249:47
40134+26182+2510X27X414+01192+162813:08
53+28413+385X29X183+12204+36422+19817:13
62+3824X20X413+463619414+28214610:52
73+13233+09332+5418X2X1234312+59312:15
84+2882+44302+59163+496X37X243914:00
94+14321+54362+15452+562X2X1342611:19
1025142511251125342539X46X370:00
113+18183+2020X2X283+40224+08183+333617:59
12X2425392518252625292545X10:00
Sheet9
Cell Formulas
RangeFormula
O3:O12O3=LET(d, A3:N3, SUM(IF(ISTEXT(d), IFERROR(VALUE(SUBSTITUTE(d, "+", ":")), 0), 0)) )
 
Upvote 0

Forum statistics

Threads
1,220,985
Messages
6,157,220
Members
451,405
Latest member
87th

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top