Forum Discussion
Formulas Not Working
- Apr 07, 2024
1) The formula in F2 should be
=INDEX(Contracts!$D$2:$AO$20,MATCH(Calcs_Logs!$D3,Contracts!$C$2:$C$20,0),MATCH(Calcs_Logs!$E3,Contracts!$D$1:$AO$1,0))
or slightly better:
=LET(v,INDEX(Contracts!$D$2:$AO$20,MATCH(Calcs_Logs!$D3,Contracts!$C$2:$C$20,0),MATCH(Calcs_Logs!$E3,Contracts!$D$1:$AO$1,0)),IF(v="","",v))
2) The formula for the most frequent duty is complicated, see the attached workbook.
3) The count formula cannot use COUNTIFS since you;re referring to ranges with different sizes. Use SUM instead.
1) The formula in F2 should be
=INDEX(Contracts!$D$2:$AO$20,MATCH(Calcs_Logs!$D3,Contracts!$C$2:$C$20,0),MATCH(Calcs_Logs!$E3,Contracts!$D$1:$AO$1,0))
or slightly better:
=LET(v,INDEX(Contracts!$D$2:$AO$20,MATCH(Calcs_Logs!$D3,Contracts!$C$2:$C$20,0),MATCH(Calcs_Logs!$E3,Contracts!$D$1:$AO$1,0)),IF(v="","",v))
2) The formula for the most frequent duty is complicated, see the attached workbook.
3) The count formula cannot use COUNTIFS since you;re referring to ranges with different sizes. Use SUM instead.
- Adam08780Apr 07, 2024Copper ContributorExcellent all working
Thank you very much