jrobin9151
Technical User
I put together the following formula based on blogs out there and it works fine: {=SUM(IF($B$1:$B$500="11_22",IF($L$1:$L$500=303,IF($M$1:$M$500>=1,$M$1:$M$500))))}
The formula looks to column B and when it finds the Pay period "11_22" it looks to column L for cells that have series 303 listed. After those matches return true it looks to column M for entries that are greater than or equal to 1 and sums it returns the sum. Again, this formula works fine.
ISSUE:
The breakdown occurs when I add a second series such as 1802. So I want the series to add the 1's in column M when it finds series 303 OR 1802 in column L. I tried this formula {=SUM(IF($B$1:$B$500="11_22",IF($L$1:$L$500=303,IF($L$1:$L$500=1802,IF($M$1:$M$500>=1,$M$1:$M$500))))} and I don't get an error but it does not add the values corresponding to the pay period or series. I tried sticking an OR(if,.... to find the second series value but that didn't work either.
END PURPOSE:
I know I could get away with using a pivot table for the data but I'm dealing with novices so I"m trying to parse out this information from a data dump and have it post to a "recap" page
The formula looks to column B and when it finds the Pay period "11_22" it looks to column L for cells that have series 303 listed. After those matches return true it looks to column M for entries that are greater than or equal to 1 and sums it returns the sum. Again, this formula works fine.
ISSUE:
The breakdown occurs when I add a second series such as 1802. So I want the series to add the 1's in column M when it finds series 303 OR 1802 in column L. I tried this formula {=SUM(IF($B$1:$B$500="11_22",IF($L$1:$L$500=303,IF($L$1:$L$500=1802,IF($M$1:$M$500>=1,$M$1:$M$500))))} and I don't get an error but it does not add the values corresponding to the pay period or series. I tried sticking an OR(if,.... to find the second series value but that didn't work either.
END PURPOSE:
I know I could get away with using a pivot table for the data but I'm dealing with novices so I"m trying to parse out this information from a data dump and have it post to a "recap" page