Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Im using a worksheet that has a cell (C27) that totals rooms and a cell
(J28) that totals rates and a cell (J29) that is the average daily rate total, rate/total rooms. Im using the formula =AVERAGE(J28/C27). The only problem is until I actually input a number into C27 I get the #DIV/0! displayed in my ADR cell (J29). I dont always need this data so is there a way I can input the formula and not have the #DIV/0! in cell J29? Thanks, Malcolm |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
G'day Malcolm
=IF($J28=0,0,AVERAGE(J28/C27)) HTH Mark "Malcolm" wrote in message ... I'm using a worksheet that has a cell (C27) that totals rooms and a cell (J28) that totals rates and a cell (J29) that is the average daily rate total, rate/total rooms. I'm using the formula =AVERAGE(J28/C27). The only problem is until I actually input a number into C27 I get the #DIV/0! displayed in my ADR cell (J29). I don't always need this data so is there a way I can input the formula and not have the #DIV/0! in cell J29? Thanks, Malcolm |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
On May 27, 3:33*pm, "Noodnutt @ Work" wrote:
G'day Malcolm =IF($J28=0,0,AVERAGE(J28/C27)) HTH Mark "Malcolm" wrote in message ... I'm using a worksheet that has a cell (C27) that totals rooms and a cell (J28) that totals rates and a cell (J29) that is the average daily rate total, rate/total rooms. I'm using the formula =AVERAGE(J28/C27). The only problem is until I actually input a number into C27 I get the #DIV/0! displayed in my ADR cell (J29). I don't always need this data so is there a way I can input the formula and not have the #DIV/0! in cell J29? Thanks, Malcolm- Hide quoted text - - Show quoted text - It think when you divide you already creat the average. You don't need the AVERAGE function. =IF(C27=0,0,J28/C27) =IF(iserror(J28/C27),0,J28/C27) in 2007; =IFERROR(J28.C27,0) My preference runs to the if error formulas Sig |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
On May 27, 4:06*pm, Ziggy wrote:
On May 27, 3:33*pm, "Noodnutt @ Work" wrote: G'day Malcolm =IF($J28=0,0,AVERAGE(J28/C27)) HTH Mark "Malcolm" wrote in message ... I'm using a worksheet that has a cell (C27) that totals rooms and a cell (J28) that totals rates and a cell (J29) that is the average daily rate total, rate/total rooms. I'm using the formula =AVERAGE(J28/C27). The only problem is until I actually input a number into C27 I get the #DIV/0! displayed in my ADR cell (J29). I don't always need this data so is there a way I can input the formula and not have the #DIV/0! in cell J29? Thanks, Malcolm- Hide quoted text - - Show quoted text - It think when you divide you already creat the average. You don't need the AVERAGE function. * * * * * * * * =IF(C27=0,0,J28/C27) * * * * * * * *=IF(iserror(J28/C27),0,J28/C27) in 2007; * =IFERROR(J28.C27,0) My preference runs to the if error formulas Sig- Hide quoted text - - Show quoted text - Should have been =IFERROR(J28/C27,0) |
#5
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
D'oh
Seeing the trees through the forest.. Thx Ziggy "Ziggy" wrote in message ... On May 27, 3:33 pm, "Noodnutt @ Work" wrote: G'day Malcolm =IF($J28=0,0,AVERAGE(J28/C27)) HTH Mark "Malcolm" wrote in message ... I'm using a worksheet that has a cell (C27) that totals rooms and a cell (J28) that totals rates and a cell (J29) that is the average daily rate total, rate/total rooms. I'm using the formula =AVERAGE(J28/C27). The only problem is until I actually input a number into C27 I get the #DIV/0! displayed in my ADR cell (J29). I don't always need this data so is there a way I can input the formula and not have the #DIV/0! in cell J29? Thanks, Malcolm- Hide quoted text - - Show quoted text - It think when you divide you already creat the average. You don't need the AVERAGE function. =IF(C27=0,0,J28/C27) =IF(iserror(J28/C27),0,J28/C27) in 2007; =IFERROR(J28.C27,0) My preference runs to the if error formulas Sig |
#6
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]() "Ziggy" wrote: On May 27, 3:33 pm, "Noodnutt @ Work" wrote: G'day Malcolm =IF($J28=0,0,AVERAGE(J28/C27)) HTH Mark "Malcolm" wrote in message ... I'm using a worksheet that has a cell (C27) that totals rooms and a cell (J28) that totals rates and a cell (J29) that is the average daily rate total, rate/total rooms. I'm using the formula =AVERAGE(J28/C27). The only problem is until I actually input a number into C27 I get the #DIV/0! displayed in my ADR cell (J29). I don't always need this data so is there a way I can input the formula and not have the #DIV/0! in cell J29? Thanks, Malcolm- Hide quoted text - - Show quoted text - It think when you divide you already creat the average. You don't need the AVERAGE function. =IF(C27=0,0,J28/C27) =IF(iserror(J28/C27),0,J28/C27) in 2007; =IFERROR(J28.C27,0) My preference runs to the if error formulas Sig Sig, Hi, Since I am using 2007, IFERROR does work great. Thanks, Malcolm . |
#7
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Hi Malcolm,
One way... =IF(ISERROR(AVERAGE(J28/C27)),"",J28/C27) Ken Hudson "Malcolm" wrote: Im using a worksheet that has a cell (C27) that totals rooms and a cell (J28) that totals rates and a cell (J29) that is the average daily rate total, rate/total rooms. Im using the formula =AVERAGE(J28/C27). The only problem is until I actually input a number into C27 I get the #DIV/0! displayed in my ADR cell (J29). I dont always need this data so is there a way I can input the formula and not have the #DIV/0! in cell J29? Thanks, Malcolm |
#8
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
=if(c27=0,"",AVERAGE(J28/C27))
-- Wag more, bark less "Malcolm" wrote: Im using a worksheet that has a cell (C27) that totals rooms and a cell (J28) that totals rates and a cell (J29) that is the average daily rate total, rate/total rooms. Im using the formula =AVERAGE(J28/C27). The only problem is until I actually input a number into C27 I get the #DIV/0! displayed in my ADR cell (J29). I dont always need this data so is there a way I can input the formula and not have the #DIV/0! in cell J29? Thanks, Malcolm |
#9
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Or, more simply:
=if(c27=0,"",j28/c27) Regards, Fred "Brad" wrote in message ... =if(c27=0,"",AVERAGE(J28/C27)) -- Wag more, bark less "Malcolm" wrote: Im using a worksheet that has a cell (C27) that totals rooms and a cell (J28) that totals rates and a cell (J29) that is the average daily rate total, rate/total rooms. Im using the formula =AVERAGE(J28/C27). The only problem is until I actually input a number into C27 I get the #DIV/0! displayed in my ADR cell (J29). I dont always need this data so is there a way I can input the formula and not have the #DIV/0! in cell J29? Thanks, Malcolm |
#10
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
hi
vary your formula a tad =IF(c27=0,0,average(j28/c27)) thought i haven't seen the average formula used quite that way. but if c27 is zero then the above formual will put a zero in the cell instead of #DIV/0 regards FSt1 "Malcolm" wrote: Im using a worksheet that has a cell (C27) that totals rooms and a cell (J28) that totals rates and a cell (J29) that is the average daily rate total, rate/total rooms. Im using the formula =AVERAGE(J28/C27). The only problem is until I actually input a number into C27 I get the #DIV/0! displayed in my ADR cell (J29). I dont always need this data so is there a way I can input the formula and not have the #DIV/0! in cell J29? Thanks, Malcolm |
#11
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
FSt1, Hi, again,
Once again, your on the money and your solution worked slick. Thank you and best regards, Malcolm "FSt1" wrote: hi vary your formula a tad =IF(c27=0,0,average(j28/c27)) thought i haven't seen the average formula used quite that way. but if c27 is zero then the above formual will put a zero in the cell instead of #DIV/0 regards FSt1 "Malcolm" wrote: Im using a worksheet that has a cell (C27) that totals rooms and a cell (J28) that totals rates and a cell (J29) that is the average daily rate total, rate/total rooms. Im using the formula =AVERAGE(J28/C27). The only problem is until I actually input a number into C27 I get the #DIV/0! displayed in my ADR cell (J29). I dont always need this data so is there a way I can input the formula and not have the #DIV/0! in cell J29? Thanks, Malcolm |
#12
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Think you don't need to use "average", and this simple IF trap which checks
the denominator cell should suffice: =IF(C27="","",J29/C27) -- Max Singapore --- "Malcolm" wrote: Im using a worksheet that has a cell (C27) that totals rooms and a cell (J28) that totals rates and a cell (J29) that is the average daily rate total, rate/total rooms. Im using the formula =AVERAGE(J28/C27). The only problem is until I actually input a number into C27 I get the #DIV/0! displayed in my ADR cell (J29). I dont always need this data so is there a way I can input the formula and not have the #DIV/0! in cell J29? Thanks, Malcolm |
#13
![]() |
|||
|
|||
![]() Quote:
if you are using excel 2007, refer iserror function. it will throw empty "" when error generates. iserror(AVERAGE(J28/C27),"",AVERAGE(J28/C27)). all the best
__________________
Thanks Bala |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How do I weight numbers when some are zero without getting DIV0 | Excel Worksheet Functions | |||
#VALUE & #DIV0 | Excel Worksheet Functions | |||
IRR & #DIV0! | Excel Worksheet Functions | |||
I WANT TO HIDE THIS #DIV0! | Excel Discussion (Misc queries) | |||
#DIV0/! issues | Excel Discussion (Misc queries) |