Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I am trying to use Xcelsius to build some what-if dashboards but Xcelsius
does not support the ISERROR function in Excel. Does anyone know of an alternaitive for the ISERROR function. Below is a sample of the formule where I want to replace ISERROR. =IF(ISERROR(F8/1000),"",(F8/1000)) -- Ismael R |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Try this:
=IF(ISNUMBER(F8/1000),F8/1000,"") -- HTH, RD --------------------------------------------------------------------------- Please keep all correspondence within the NewsGroup, so all may benefit ! --------------------------------------------------------------------------- "Ismael R" wrote in message ... I am trying to use Xcelsius to build some what-if dashboards but Xcelsius does not support the ISERROR function in Excel. Does anyone know of an alternaitive for the ISERROR function. Below is a sample of the formule where I want to replace ISERROR. =IF(ISERROR(F8/1000),"",(F8/1000)) -- Ismael R |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
An alternative to ISERROR but I have no idea if it's compatible with
Xcelsius: =IF(COUNT(F8/1000),F8/1000,"") If F8/1000 = an error, COUNT = 0 and IF returns the value_if_false agument "". -- Biff Microsoft Excel MVP "Ismael R" wrote in message ... I am trying to use Xcelsius to build some what-if dashboards but Xcelsius does not support the ISERROR function in Excel. Does anyone know of an alternaitive for the ISERROR function. Below is a sample of the formule where I want to replace ISERROR. =IF(ISERROR(F8/1000),"",(F8/1000)) -- Ismael R |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Thanks Biff. the formula worked!
-- Ismael R "T. Valko" wrote: An alternative to ISERROR but I have no idea if it's compatible with Xcelsius: =IF(COUNT(F8/1000),F8/1000,"") If F8/1000 = an error, COUNT = 0 and IF returns the value_if_false agument "". -- Biff Microsoft Excel MVP "Ismael R" wrote in message ... I am trying to use Xcelsius to build some what-if dashboards but Xcelsius does not support the ISERROR function in Excel. Does anyone know of an alternaitive for the ISERROR function. Below is a sample of the formule where I want to replace ISERROR. =IF(ISERROR(F8/1000),"",(F8/1000)) -- Ismael R |
#5
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
You're welcome. Thanks for the feedback!
-- Biff Microsoft Excel MVP "Ismael R" wrote in message ... Thanks Biff. the formula worked! -- Ismael R "T. Valko" wrote: An alternative to ISERROR but I have no idea if it's compatible with Xcelsius: =IF(COUNT(F8/1000),F8/1000,"") If F8/1000 = an error, COUNT = 0 and IF returns the value_if_false agument "". -- Biff Microsoft Excel MVP "Ismael R" wrote in message ... I am trying to use Xcelsius to build some what-if dashboards but Xcelsius does not support the ISERROR function in Excel. Does anyone know of an alternaitive for the ISERROR function. Below is a sample of the formule where I want to replace ISERROR. =IF(ISERROR(F8/1000),"",(F8/1000)) -- Ismael R |
#6
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
This is a great formula for a number. Is there any solution for a character
field? |
#7
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
ISERROR should work on text strings.
Do you have an example of how you would like it used or what doesn't work when you do use it? Gord Dibben MS Excel MVP On Thu, 5 Mar 2009 11:46:01 -0800, Sam wrote: This is a great formula for a number. Is there any solution for a character field? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Use both ISNA and ISERROR in a long formula | Excel Worksheet Functions | |||
Adding ISERROR to formula | Excel Worksheet Functions | |||
Using iserror in formula | Excel Discussion (Misc queries) | |||
Using ISERROR to Solve #DIV/0 in a formula | Excel Worksheet Functions | |||
Int Iserror Len Mid Find formula | Excel Worksheet Functions |