I'm clear on what you want to do but not so clear on the data that's in the three fields you've described. In the actual database does the Manicure, Pedicure, and Hair Care fields have 1s and 0s or does each field actually have "string (1)" listed in it?
If it is an actual Boolean field, (1s and 0s) then you can do a couple of things among others;
Make a formula called {@Hygiene} and use this code;
IF {Table.Manicure}
THEN 'Manicure'
ELSE IF {Table.Pedicure}
THEN 'Pedicure'
ELSE IF {Table.Hair Care}
THEN 'Hair Care'
The above code only assumes that one of the three will be True/Yes. If there are multiples that are true then you have to code for that.
The other thing you can do if the three database fields in question are Boolean, (true/false, Yes/No, 1/0), is to make text column headers with the respective names of the fields and then place the fields under their respective header. You can then format the Boolean field to display a "Yes" or "No".