Hi, how can I combine these two functions? They are both working separately for me for the same range of data.
=SUMIFS({MGHours}, {MGNum}, OR(@cell = [Project Num 1]@row , @cell = [Project Num 2]@row , @cell = [Project Num 3]@row , @cell = [Project Num 4]@row ))
=SUMIFS({MGHours}, {MGDate}, WEEKNUMBER(@cell ) = WEEKNUMBER(TODAY()))
Basically, I want to add the MGHours if the MGNum matches 1 of 4 project numbers, and date is also this week. (I actually want to be able to specify week number in a cell or sheet summary, but this would work for now.)
Thanks!