I am creating a Table 1 using the "collect" command in Stata. I would like to have a "Total" row at the top; however, when I do this, I get both a dimension label and a level label (see image). I have tried multiple ways to delete the header "Total," but seem unable to get it to disappear. I can delete the level label "All Employees," but then the results float in an unlabeled row below "Total." Any suggestions for how I might only have one label that is aligned correctly? Thank you!

This is the code I have tried:

Code:
collect style header var[Total], level(hide)
collect style header colname[Total], level(hide)
collect style header Total, title(hide) level(label)

Array