Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 21
Default I need help dragging a formula down

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   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 11,501
Default I need help dragging a formula down

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   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 21
Default I need help dragging a formula down

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?

  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 154
Default I need help dragging a formula down

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?

  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 21
Default I need help dragging a formula down

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   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 8,651
Default I need help dragging a formula down

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?



  #7   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 11,501
Default I need help dragging a formula down

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?

  #8   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 21
Default I need help dragging a formula down

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?

  #9   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 11,501
Default I need help dragging a formula down

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?

  #10   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 21
Default I need help dragging a formula down

in situation #1, i would want answer to be 2.35
in situation #2, i would want answer to be 2.40

"Mike H" wrote:

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?



  #11   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 154
Default I need help dragging a formula down

Those were the answers that I returned with the current situations and formula.
--
--Thomas [PBD]
Working hard to make working easy.
Answered your question? Click ''Yes'' below.


"tarabull" wrote:

in situation #1, i would want answer to be 2.35
in situation #2, i would want answer to be 2.40

"Mike H" wrote:

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?

  #12   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 21
Default I need help dragging a formula down

The resulting answer is 2.35 in both cases when i use the formula that Thomas
gave. Since 2.35 ends in .05, the ceiling of .05 keeps it at 2.35

"Thomas [PBD]" wrote:

Those were the answers that I returned with the current situations and formula.
--
--Thomas [PBD]
Working hard to make working easy.
Answered your question? Click ''Yes'' below.


"tarabull" wrote:

in situation #1, i would want answer to be 2.35
in situation #2, i would want answer to be 2.40

"Mike H" wrote:

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?

  #13   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 154
Default I need help dragging a formula down

Tarabull,

Try replacing CEILING with ROUNDUP.

--
--Thomas [PBD]
Working hard to make working easy.
Answered your question? Click ''Yes'' below.


"tarabull" wrote:

The resulting answer is 2.35 in both cases when i use the formula that Thomas
gave. Since 2.35 ends in .05, the ceiling of .05 keeps it at 2.35

"Thomas [PBD]" wrote:

Those were the answers that I returned with the current situations and formula.
--
--Thomas [PBD]
Working hard to make working easy.
Answered your question? Click ''Yes'' below.


"tarabull" wrote:

in situation #1, i would want answer to be 2.35
in situation #2, i would want answer to be 2.40

"Mike H" wrote:

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?

  #14   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 21
Default I need help dragging a formula down

Then it rounds it up to 3.00

"Thomas [PBD]" wrote:

Tarabull,

Try replacing CEILING with ROUNDUP.

--
--Thomas [PBD]
Working hard to make working easy.
Answered your question? Click ''Yes'' below.


"tarabull" wrote:

The resulting answer is 2.35 in both cases when i use the formula that Thomas
gave. Since 2.35 ends in .05, the ceiling of .05 keeps it at 2.35

"Thomas [PBD]" wrote:

Those were the answers that I returned with the current situations and formula.
--
--Thomas [PBD]
Working hard to make working easy.
Answered your question? Click ''Yes'' below.


"tarabull" wrote:

in situation #1, i would want answer to be 2.35
in situation #2, i would want answer to be 2.40

"Mike H" wrote:

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?

  #15   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 154
Default I need help dragging a formula down

My mistake, ROUNDUP(P53,1)
--
--Thomas [PBD]
Working hard to make working easy.
Answered your question? Click ''Yes'' below.


"tarabull" wrote:

Then it rounds it up to 3.00

"Thomas [PBD]" wrote:

Tarabull,

Try replacing CEILING with ROUNDUP.

--
--Thomas [PBD]
Working hard to make working easy.
Answered your question? Click ''Yes'' below.


"tarabull" wrote:

The resulting answer is 2.35 in both cases when i use the formula that Thomas
gave. Since 2.35 ends in .05, the ceiling of .05 keeps it at 2.35

"Thomas [PBD]" wrote:

Those were the answers that I returned with the current situations and formula.
--
--Thomas [PBD]
Working hard to make working easy.
Answered your question? Click ''Yes'' below.


"tarabull" wrote:

in situation #1, i would want answer to be 2.35
in situation #2, i would want answer to be 2.40

"Mike H" wrote:

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?



  #16   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 21
Default I need help dragging a formula down

nope, still 3.00

"Thomas [PBD]" wrote:

My mistake, ROUNDUP(P53,1)
--
--Thomas [PBD]
Working hard to make working easy.
Answered your question? Click ''Yes'' below.


"tarabull" wrote:

Then it rounds it up to 3.00

"Thomas [PBD]" wrote:

Tarabull,

Try replacing CEILING with ROUNDUP.

--
--Thomas [PBD]
Working hard to make working easy.
Answered your question? Click ''Yes'' below.


"tarabull" wrote:

The resulting answer is 2.35 in both cases when i use the formula that Thomas
gave. Since 2.35 ends in .05, the ceiling of .05 keeps it at 2.35

"Thomas [PBD]" wrote:

Those were the answers that I returned with the current situations and formula.
--
--Thomas [PBD]
Working hard to make working easy.
Answered your question? Click ''Yes'' below.


"tarabull" wrote:

in situation #1, i would want answer to be 2.35
in situation #2, i would want answer to be 2.40

"Mike H" wrote:

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?

  #17   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 154
Default I need help dragging a formula down

That's odd. I run it on mine and it says 2.35 Roundup(P53,1) = 2.4

I get three when I put .1 in the second criteria...

--
--Thomas [PBD]
Working hard to make working easy.
Answered your question? Click ''Yes'' below.


"tarabull" wrote:

nope, still 3.00

"Thomas [PBD]" wrote:

My mistake, ROUNDUP(P53,1)
--
--Thomas [PBD]
Working hard to make working easy.
Answered your question? Click ''Yes'' below.


"tarabull" wrote:

Then it rounds it up to 3.00

"Thomas [PBD]" wrote:

Tarabull,

Try replacing CEILING with ROUNDUP.

--
--Thomas [PBD]
Working hard to make working easy.
Answered your question? Click ''Yes'' below.


"tarabull" wrote:

The resulting answer is 2.35 in both cases when i use the formula that Thomas
gave. Since 2.35 ends in .05, the ceiling of .05 keeps it at 2.35

"Thomas [PBD]" wrote:

Those were the answers that I returned with the current situations and formula.
--
--Thomas [PBD]
Working hard to make working easy.
Answered your question? Click ''Yes'' below.


"tarabull" wrote:

in situation #1, i would want answer to be 2.35
in situation #2, i would want answer to be 2.40

"Mike H" wrote:

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?

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
dragging my formula rodchar Excel Discussion (Misc queries) 0 July 22nd 08 12:38 AM
Dragging Down a Formula JBoyer Excel Worksheet Functions 4 July 3rd 08 12:57 PM
Dragging formula Sasikiran Excel Discussion (Misc queries) 8 November 15th 07 11:01 PM
Dragging a formula correctly? J.D. Webster Excel Worksheet Functions 2 February 7th 06 02:21 PM
dragging a formula P Bates Excel Discussion (Misc queries) 3 August 7th 05 09:37 PM


All times are GMT +1. The time now is 07:06 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"