Home |
Search |
Today's Posts |
#1
![]() |
|||
|
|||
![]()
Here is my formula: =if(iserr(h3/g3),"",h3/g3)
The problem is I am using this data in a line chart and whenever there is a "", my line drops all the way down to zero. Can I make the formula completely blank the cell rather than filling it with a space? |
#2
![]() |
|||
|
|||
![]()
Try
=if(iserr(h3/g3),NA(),h3/g3) -- Regards, Peo Sjoblom "asach" wrote in message ... Here is my formula: =if(iserr(h3/g3),"",h3/g3) The problem is I am using this data in a line chart and whenever there is a "", my line drops all the way down to zero. Can I make the formula completely blank the cell rather than filling it with a space? |
#3
![]() |
|||
|
|||
![]()
See if this makes it look any better:
=IF(ISERR(H3/G3),NA(),H3/G3) Regards Trevor "asach" wrote in message ... Here is my formula: =if(iserr(h3/g3),"",h3/g3) The problem is I am using this data in a line chart and whenever there is a "", my line drops all the way down to zero. Can I make the formula completely blank the cell rather than filling it with a space? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
formula to return the value of a cell based on a looked up true reference | Excel Worksheet Functions | |||
Formula to return cell contents based on multiple conditions | Excel Worksheet Functions | |||
GET.CELL | Excel Worksheet Functions | |||
how do i create a blank cell in excel using a formula | Excel Worksheet Functions | |||
VLookup resulting in a blank cell... | Excel Worksheet Functions |