I am building a separate report referencing a sheet.
When a specific employee type is selected:
I want to to sum the numbers in these 3 columns
- Copy3pp
- Copy edit fl
- copy proof fl
For a particular week.
- In my report the Primary column is the week # 1-52
- In sheet referencing I have a column called Week (weekof) in the formula below
=IF(CONTAINS({copywriterfl}, Freelancer), SUMIFS({Weekof}, =[Primary Column]@row, {Copy3pp}), SUMIFS({Weekof}, =[Primary Column]@row, {Copyeditfl}), SUMIFS({Weekof}, =[Primary Column]@row, {Copyprooffl}))
I get error unparseable.
I tried this as well: I got the same error unparseable
=IF(CONTAINS({copywriterfl}, Freelancer, SUMIFS({Weekof}, =[Primary Column]@row, {Copy3pp}, {Copyeditfl}, {Copyprooffl}))