I'm sure there is a really simple answer to this and I'm just missing it.
I need this formula to sum the contents of each row in D:F just for that row not sum the contents of columns D:F
=ARRAYFORMULA(
if(
row(A1:A)=1,
"TOTAL HOUSING",
sum(D:F)
)
)