Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I am using:
=IF(P53M53/0.85,P53,"=ceiling(P53,0.05)") if I copy and paste down, ceiling(p53,0.05) doesn't change to p54, p55, p56 etc... what do i need to do to make this happen? |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Hi,
You don't need the quotes or the = sign =IF(P53M53/0.85,P53,CEILING(P53,0.05)) Mike "tarabull" wrote: I am using: =IF(P53M53/0.85,P53,"=ceiling(P53,0.05)") if I copy and paste down, ceiling(p53,0.05) doesn't change to p54, p55, p56 etc... what do i need to do to make this happen? |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Thanks Mike,
One more question for you, if p53=2.35 but is not m53/.85, the if command is still answering 2.35 since it ends in .05. How can I get it to go up to 2.40? "Mike H" wrote: Hi, You don't need the quotes or the = sign =IF(P53M53/0.85,P53,CEILING(P53,0.05)) Mike "tarabull" wrote: I am using: =IF(P53M53/0.85,P53,"=ceiling(P53,0.05)") if I copy and paste down, ceiling(p53,0.05) doesn't change to p54, p55, p56 etc... what do i need to do to make this happen? |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Maybe
=IF(P53M53/0.85,P53,CEILING(P53,0.1)) Mike "tarabull" wrote: Thanks Mike, One more question for you, if p53=2.35 but is not m53/.85, the if command is still answering 2.35 since it ends in .05. How can I get it to go up to 2.40? "Mike H" wrote: Hi, You don't need the quotes or the = sign =IF(P53M53/0.85,P53,CEILING(P53,0.05)) Mike "tarabull" wrote: I am using: =IF(P53M53/0.85,P53,"=ceiling(P53,0.05)") if I copy and paste down, ceiling(p53,0.05) doesn't change to p54, p55, p56 etc... what do i need to do to make this happen? |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
but i need it to round up to the nearest .05, say if p53 was 2.30 but not
m53/.85 then i would need it to equal 2.35 "Mike H" wrote: Maybe =IF(P53M53/0.85,P53,CEILING(P53,0.1)) Mike "tarabull" wrote: Thanks Mike, One more question for you, if p53=2.35 but is not m53/.85, the if command is still answering 2.35 since it ends in .05. How can I get it to go up to 2.40? "Mike H" wrote: Hi, You don't need the quotes or the = sign =IF(P53M53/0.85,P53,CEILING(P53,0.05)) Mike "tarabull" wrote: I am using: =IF(P53M53/0.85,P53,"=ceiling(P53,0.05)") if I copy and paste down, ceiling(p53,0.05) doesn't change to p54, p55, p56 etc... what do i need to do to make this happen? |
#6
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Hi,
I'm confused M53 =1 P53=2.35 What answer do you expect? M53=999 P53 =2.35 What answer do you expect? Mike "tarabull" wrote: but i need it to round up to the nearest .05, say if p53 was 2.30 but not m53/.85 then i would need it to equal 2.35 "Mike H" wrote: Maybe =IF(P53M53/0.85,P53,CEILING(P53,0.1)) Mike "tarabull" wrote: Thanks Mike, One more question for you, if p53=2.35 but is not m53/.85, the if command is still answering 2.35 since it ends in .05. How can I get it to go up to 2.40? "Mike H" wrote: Hi, You don't need the quotes or the = sign =IF(P53M53/0.85,P53,CEILING(P53,0.05)) Mike "tarabull" wrote: I am using: =IF(P53M53/0.85,P53,"=ceiling(P53,0.05)") if I copy and paste down, ceiling(p53,0.05) doesn't change to p54, p55, p56 etc... what do i need to do to make this happen? |
#7
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
actually this if command isn't working... if p53 is NOT greater than
m53/.85, then i am not getting the NUMBER ceiling(p53,.0.05) I am getting the text "ceiling(p53,0.05)" how can i get the false result to =ceiling(p53,0.05)?? "tarabull" wrote: I am using: =IF(P53M53/0.85,P53,"=ceiling(P53,0.05)") if I copy and paste down, ceiling(p53,0.05) doesn't change to p54, p55, p56 etc... what do i need to do to make this happen? |
#8
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Tarabull,
Mike H has the answer to that. You are returning the string =ceiling(P53,0.05) and not the result of it. Basically, Mike stated, that your formula should be =IF(P53M53/0.85,P53,CEILING(P53,0.05)) -- --Thomas [PBD] Working hard to make working easy. Answered your question? Click ''Yes'' below. "tarabull" wrote: actually this if command isn't working... if p53 is NOT greater than m53/.85, then i am not getting the NUMBER ceiling(p53,.0.05) I am getting the text "ceiling(p53,0.05)" how can i get the false result to =ceiling(p53,0.05)?? "tarabull" wrote: I am using: =IF(P53M53/0.85,P53,"=ceiling(P53,0.05)") if I copy and paste down, ceiling(p53,0.05) doesn't change to p54, p55, p56 etc... what do i need to do to make this happen? |
#9
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
You *asked* for the text string.
That's what the quote marks do in the formula. If you don't want it as a text string, don't put it inside quote marks. You don't need the equals sign either. -- David Biddulph "tarabull" wrote in message ... actually this if command isn't working... if p53 is NOT greater than m53/.85, then i am not getting the NUMBER ceiling(p53,.0.05) I am getting the text "ceiling(p53,0.05)" how can i get the false result to =ceiling(p53,0.05)?? "tarabull" wrote: I am using: =IF(P53M53/0.85,P53,"=ceiling(P53,0.05)") if I copy and paste down, ceiling(p53,0.05) doesn't change to p54, p55, p56 etc... what do i need to do to make this happen? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
dragging my formula | Excel Discussion (Misc queries) | |||
Dragging Down a Formula | Excel Worksheet Functions | |||
Dragging formula | Excel Discussion (Misc queries) | |||
Dragging a formula correctly? | Excel Worksheet Functions | |||
dragging a formula | Excel Discussion (Misc queries) |