Extending the range for specific rows/columns in a formula.

Copper Contributor

This formula is used to calculate cells from another (Sheduled) tab in the same spreadsheet and add that data to this (summary) tab.I would like to extend the ranges for columns C,L, J beyond row 128. I thought it would be as simple as increasing the row numbers, but I always get a #value! when trying.

=SUM(IF(Scheduled!$C$61:$C$128=$A28,IF(Scheduled!$L$61:$L$128="Yes",Scheduled!$J$61:$J$128)))

 

1 Reply

Try to use this formula:

=sumifs(Scheduled!$J$61:$J$128,Scheduled!$C$61:$C$128,$A$28,Scheduled!$L$61:$L$128,"Yes")

If it does not work, please attach a screenshot of the report explaining what you expect the formula to do