So sorry @Ashlea Jensen - you'd think
by now I would have learned to not respond to posts a) in the morning and b) before coffee. It never works out well. I mean, it's like I didn't even read your question. Sheesh. Sorry about that.
So to get those hours in separate columns, here's what you could do:
Add the following formulas in your Formula step (all numeric):
Admin Time Worked =If(Search("admin",Category)>0,TimeWorked,"")
Project Time Worked =If(Search("project",Category)>0,TimeWorked,"")
Out of Office Time Worked =If(Search("office",Category)>0,TimeWorked,"")
(BTW, I use the Search function instead of the Find function only because Search isn't case-sensitive.)
Also, you might want to make your TimeWorked column numeric (looks like a label since it's left-justified).
#CostingStandard(CT-Foundation)