show blank if 0

Mattlake

Board Regular
Joined
Apr 9, 2020
Messages
87
Office Version
  1. 2021
Platform
  1. Windows
Hi

I stupid question I have the below formula (which works as i need it)

Excel Formula:
=SUMPRODUCT(--('2023'!$I$2:$I$398>=Totals!$C$2),--('2023'!$I$2:$I$398<=Totals!$C$3),--('2023'!$B$2:$B$398=Totals!A5)*('2023'!$J$2:$J$398=other!$N$5))

I need it to show blank or a - if it is Zero

is there a simple way to do this?

Regards
Matthew
 

Excel Facts

Return population for a City
If you have a list of cities in A2:A100, use Data, Geography. Then =A2.Population and copy down.
Try

VBA Code:
if(=SUMPRODUCT(--('2023'!$I$2:$I$398>=Totals!$C$2),--('2023'!$I$2:$I$398<=Totals!$C$3),--('2023'!$B$2:$B$398=Totals!A5)*('2023'!$J$2:$J$398=other!$N$5))=0,"",=SUMPRODUCT(--('2023'!$I$2:$I$398>=Totals!$C$2),--('2023'!$I$2:$I$398<=Totals!$C$3),--('2023'!$B$2:$B$398=Totals!A5)*('2023'!$J$2:$J$398=other!$N$5)))
 
Upvote 0
How about
Excel Formula:
=IFERROR(1/(1/SUMPRODUCT(--('2023'!$I$2:$I$398>=Totals!$C$2),--('2023'!$I$2:$I$398<=Totals!$C$3),--('2023'!$B$2:$B$398=Totals!A5)*('2023'!$J$2:$J$398=other!$N$5))),"")
 
Upvote 0
Solution
20+ years of playing with Excel :biggrin:
 
Upvote 0
Glad we could help & thanks for the feedback.
 
Upvote 0

Forum statistics

Threads
1,216,101
Messages
6,128,838
Members
449,471
Latest member
lachbee

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