Formula produces result but this not visible in cell

Philip Rogers

New Member
Joined
Jan 19, 2004
Messages
23
I have devised a formula that brings together information from one worksheet and puts the results into a Summary Sheet. The problem that I am having is that, although the 'Insert Function' button shows a formula result, the worksheet cell remains empty.

=SUM(IF('TARMAC - Concrete'!$H$10:$H$1063="C",IF('TARMAC - Concrete'!$L$10:$L$1063=3,IF('TARMAC - Concrete'!$G$10:$G$1063="10-1\No Fines",IF('TARMAC - Concrete'!$I$10:$I$1063="M",IF('TARMAC - Concrete'!$A$10:$A$1063="Oct",'TARMAC - Concrete'!$L$10:$L$1063,0),0))))) is the formula used. The answer should show as '6.00' but comes up with '0.00'.

I have checked cell formatting is correct, number with 2 decimal places.

Can anybody suggest what I am doing wrong.
 

Excel Facts

What is the shortcut key for Format Selection?
Ctrl+1 (the number one) will open the Format dialog for whatever is selected.
Hi Philip

That looks like an array formula you are using, in which case you will need to confirm it with Ctrl+Shift+Enter (not just with Enter). if you've done it successfully, Excel will surround the formula with curly braces:

Code:
{=SUM(IF('TARMAC - Concrete'!$H$10:$H$1063="C",IF('TARMAC - Concrete'!$L$10:$L$1063=3,IF('TARMAC - Concrete'!$G$10:$G$1063="10-1\No Fines",IF('TARMAC - Concrete'!$I$10:$I$1063="M",IF('TARMAC - Concrete'!$A$10:$A$1063="Oct",'TARMAC - Concrete'!$L$10:$L$1063,0),0)))))}
 
Upvote 0

Forum statistics

Threads
1,214,643
Messages
6,120,702
Members
448,980
Latest member
CarlosWin

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top