I'm not sure if I understand you right, but if you want your formula to look in the 3 tables in sheet "Itemized Call Details" instead the 1 table in "Invoice Details" try replacing this formula
=MAX(--('Invoice Details'!$C$2:$C$180=H18)*'Invoice Details'!$E$2:$E$180
with this formula:
=MAX(
MAX(-- ('Itemized Call Details'!$D$4:$D$57=H18) * 'Itemized Call Details'!$F$4:$F$57),
MAX(-- ('Itemized Call Details'!$D$62:$D$95=H18) * 'Itemized Call Details'!$F$62:$F$95),
MAX(-- ('Itemized Call Details'!$C$99:$C$214=H18) *'Itemized Call Details'!$E$99:$E$214) )
I have added som spaces and some linefeed (ALT + ENTER) to make the formula more readable. That is perfectly legal to do in Excel formulas and can help you a lot when the size of the formula grows.
I'm not sure why you would want to change this formula, as both gives you the same result. That is because the 3 tables in sheet "Itemized Call Details" are based on the data in "Invoice Details"
It is stil an array formula so remember CTRL + SHIFT + ENTER
Bookmarks