Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
when i want multiple some celss like
a1*b1*c1*d1 maybe some of this cells are blank and excel equal that to zero how can i ignor the zero value (balnk cells ) in multiple thx |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Use:
=IF(A1="",1,A1)*IF(B1="",1,B1)*IF(C1="",1,C1)*IF(D 1="",1,D1) -- Gary''s Student "arash" wrote: when i want multiple some celss like a1*b1*c1*d1 maybe some of this cells are blank and excel equal that to zero how can i ignor the zero value (balnk cells ) in multiple thx |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
No if statement are necessary to accomplish this.
=PRODUCT(A1:D1) will work. It will only multiply all numbers that are in your range - ignoring text too. "arash" wrote: when i want multiple some celss like a1*b1*c1*d1 maybe some of this cells are blank and excel equal that to zero how can i ignor the zero value (balnk cells ) in multiple thx |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Have a look at the PRODUCT function
this will ignore empty and text cells =PRODUCT(A1:D1) hth RES |
#5
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]() |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Blank cells and Charting multiple data points | Charts and Charting in Excel | |||
Blank cells in line charts | Excel Discussion (Misc queries) | |||
How can I make the graph omit blank cells in the data set? | Charts and Charting in Excel | |||
REPOST: How can I make the graph omit blank cells in the data set? | Charts and Charting in Excel | |||
making graphs ignore "blank " cells | Excel Discussion (Misc queries) |