Jan 09 2023 02:01 AM
SolutionI would forget about the merged cells. They will be too much trouble to maintain.
A traditional formula would be
= IF($A2<>$A1,
SUMIFS($B$2:$B$14, $A$2:$A$14, $A2),
"")
and drag down. The orange is pretty but I wouldn't use the formula, instead with 365
= LET(
priorMVD, DROP(VSTACK("",MVD),-1),
newMVD?, MVD<>priorMVD,
IF(newMVD?, SUMIFS(Unit, MVD, MVD), "")
)
Jan 09 2023 02:53 AM - edited Jan 09 2023 04:05 AM
Jan 09 2023 04:21 AM