Forum Discussion
Lucy_McMahon
Sep 23, 2022Copper Contributor
Sum all cells with text EXCEPT with letter "D"
Calculating the M column for hours worked, I have a formula that will sum all amounts in cells in columns B:K with text to subtract them from the L column. Hours that remain are shown as hours worked...
- Sep 23, 2022
=[@[Scheduled Hours]]-SUM(IFERROR(--IF(LEFT(Table27[@[M1]:[F2]])<>"D",MID(Table27[@[M1]:[F2]],2,99)),0))
HansVogelaar
Sep 23, 2022MVP
=[@[Scheduled Hours]]-SUM(IFERROR(--IF(LEFT(Table27[@[M1]:[F2]])<>"D",MID(Table27[@[M1]:[F2]],2,99)),0))
Lucy_McMahon
Sep 26, 2022Copper Contributor
Thank you! I was entering the <>"D" but it wasn't working and I knew I was missing a piece.