+ Reply to Thread
Results 1 to 16 of 16

Solve IF value

  1. #1
    pdberger
    Guest

    Solve IF value

    Christine --

    Howz about:

    =if(y>=x,x,y)

    hth,

    Peter

    "Christine Lombardo" wrote:

    > I need to create an equation.
    >
    > If (roundup(AE104*2,-3)>=300000) then =300000 or if
    > (roundup(AE104*2,-3)<300000) then =roundup(AE104*2,-3)
    >
    > Basically:
    > If y>=x then x, if y<x then y


  2. #2
    Christine Lombardo
    Guest

    re: Solve IF value

    When I do that it always shows y as true when I know that it is not.

    "pdberger" wrote:

    > Christine --
    >
    > Howz about:
    >
    > =if(y>=x,x,y)
    >
    > hth,
    >
    > Peter
    >
    > "Christine Lombardo" wrote:
    >
    > > I need to create an equation.
    > >
    > > If (roundup(AE104*2,-3)>=300000) then =300000 or if
    > > (roundup(AE104*2,-3)<300000) then =roundup(AE104*2,-3)
    > >
    > > Basically:
    > > If y>=x then x, if y<x then y


  3. #3
    Bob Phillips
    Guest

    re: Solve IF value

    How about

    =MIN(300000,ROUNDUP(AE104*2,-3))

    --

    HTH

    RP
    (remove nothere from the email address if mailing direct)


    "pdberger" <[email protected]> wrote in message
    news:[email protected]...
    > Christine --
    >
    > Howz about:
    >
    > =if(y>=x,x,y)
    >
    > hth,
    >
    > Peter
    >
    > "Christine Lombardo" wrote:
    >
    > > I need to create an equation.
    > >
    > > If (roundup(AE104*2,-3)>=300000) then =300000 or if
    > > (roundup(AE104*2,-3)<300000) then =roundup(AE104*2,-3)
    > >
    > > Basically:
    > > If y>=x then x, if y<x then y




  4. #4
    pdberger
    Guest

    re: Solve IF value

    Christine -- I may not understand what you're trying to accomplish. I
    created the following, which seems to work the way I understand you need:

    A B C

    1 5 4 =IF(A1>=B1,B1,A1)
    2 5 5 copied down...
    3 5 6

    I got the following results: In 'C1' the result was 4, 'C2' was 5, and 'C3'
    was 5. Is that not a simplified version of what you wanted?

    hth


    "Christine Lombardo" wrote:

    > When I do that it always shows y as true when I know that it is not.
    >
    > "pdberger" wrote:
    >
    > > Christine --
    > >
    > > Howz about:
    > >
    > > =if(y>=x,x,y)
    > >
    > > hth,
    > >
    > > Peter
    > >
    > > "Christine Lombardo" wrote:
    > >
    > > > I need to create an equation.
    > > >
    > > > If (roundup(AE104*2,-3)>=300000) then =300000 or if
    > > > (roundup(AE104*2,-3)<300000) then =roundup(AE104*2,-3)
    > > >
    > > > Basically:
    > > > If y>=x then x, if y<x then y


  5. #5
    Christine Lombardo
    Guest

    re: Solve IF value

    Thank you. That worked.

    "Bob Phillips" wrote:

    > How about
    >
    > =MIN(300000,ROUNDUP(AE104*2,-3))
    >
    > --
    >
    > HTH
    >
    > RP
    > (remove nothere from the email address if mailing direct)
    >
    >
    > "pdberger" <[email protected]> wrote in message
    > news:[email protected]...
    > > Christine --
    > >
    > > Howz about:
    > >
    > > =if(y>=x,x,y)
    > >
    > > hth,
    > >
    > > Peter
    > >
    > > "Christine Lombardo" wrote:
    > >
    > > > I need to create an equation.
    > > >
    > > > If (roundup(AE104*2,-3)>=300000) then =300000 or if
    > > > (roundup(AE104*2,-3)<300000) then =roundup(AE104*2,-3)
    > > >
    > > > Basically:
    > > > If y>=x then x, if y<x then y

    >
    >
    >


  6. #6
    pdberger
    Guest

    re: Solve IF value

    Christine --

    Howz about:

    =if(y>=x,x,y)

    hth,

    Peter

    "Christine Lombardo" wrote:

    > I need to create an equation.
    >
    > If (roundup(AE104*2,-3)>=300000) then =300000 or if
    > (roundup(AE104*2,-3)<300000) then =roundup(AE104*2,-3)
    >
    > Basically:
    > If y>=x then x, if y<x then y


  7. #7
    Christine Lombardo
    Guest

    re: Solve IF value

    When I do that it always shows y as true when I know that it is not.

    "pdberger" wrote:

    > Christine --
    >
    > Howz about:
    >
    > =if(y>=x,x,y)
    >
    > hth,
    >
    > Peter
    >
    > "Christine Lombardo" wrote:
    >
    > > I need to create an equation.
    > >
    > > If (roundup(AE104*2,-3)>=300000) then =300000 or if
    > > (roundup(AE104*2,-3)<300000) then =roundup(AE104*2,-3)
    > >
    > > Basically:
    > > If y>=x then x, if y<x then y


  8. #8
    Bob Phillips
    Guest

    re: Solve IF value

    How about

    =MIN(300000,ROUNDUP(AE104*2,-3))

    --

    HTH

    RP
    (remove nothere from the email address if mailing direct)


    "pdberger" <[email protected]> wrote in message
    news:[email protected]...
    > Christine --
    >
    > Howz about:
    >
    > =if(y>=x,x,y)
    >
    > hth,
    >
    > Peter
    >
    > "Christine Lombardo" wrote:
    >
    > > I need to create an equation.
    > >
    > > If (roundup(AE104*2,-3)>=300000) then =300000 or if
    > > (roundup(AE104*2,-3)<300000) then =roundup(AE104*2,-3)
    > >
    > > Basically:
    > > If y>=x then x, if y<x then y




  9. #9
    pdberger
    Guest

    re: Solve IF value

    Christine -- I may not understand what you're trying to accomplish. I
    created the following, which seems to work the way I understand you need:

    A B C

    1 5 4 =IF(A1>=B1,B1,A1)
    2 5 5 copied down...
    3 5 6

    I got the following results: In 'C1' the result was 4, 'C2' was 5, and 'C3'
    was 5. Is that not a simplified version of what you wanted?

    hth


    "Christine Lombardo" wrote:

    > When I do that it always shows y as true when I know that it is not.
    >
    > "pdberger" wrote:
    >
    > > Christine --
    > >
    > > Howz about:
    > >
    > > =if(y>=x,x,y)
    > >
    > > hth,
    > >
    > > Peter
    > >
    > > "Christine Lombardo" wrote:
    > >
    > > > I need to create an equation.
    > > >
    > > > If (roundup(AE104*2,-3)>=300000) then =300000 or if
    > > > (roundup(AE104*2,-3)<300000) then =roundup(AE104*2,-3)
    > > >
    > > > Basically:
    > > > If y>=x then x, if y<x then y


  10. #10
    Christine Lombardo
    Guest

    re: Solve IF value

    Thank you. That worked.

    "Bob Phillips" wrote:

    > How about
    >
    > =MIN(300000,ROUNDUP(AE104*2,-3))
    >
    > --
    >
    > HTH
    >
    > RP
    > (remove nothere from the email address if mailing direct)
    >
    >
    > "pdberger" <[email protected]> wrote in message
    > news:[email protected]...
    > > Christine --
    > >
    > > Howz about:
    > >
    > > =if(y>=x,x,y)
    > >
    > > hth,
    > >
    > > Peter
    > >
    > > "Christine Lombardo" wrote:
    > >
    > > > I need to create an equation.
    > > >
    > > > If (roundup(AE104*2,-3)>=300000) then =300000 or if
    > > > (roundup(AE104*2,-3)<300000) then =roundup(AE104*2,-3)
    > > >
    > > > Basically:
    > > > If y>=x then x, if y<x then y

    >
    >
    >


  11. #11
    Christine Lombardo
    Guest

    IF value

    I need to create an equation.

    If (roundup(AE104*2,-3)>=300000) then =300000 or if
    (roundup(AE104*2,-3)<300000) then =roundup(AE104*2,-3)

    Basically:
    If y>=x then x, if y<x then y

  12. #12
    pdberger
    Guest

    re: Solve IF value

    Christine --

    Howz about:

    =if(y>=x,x,y)

    hth,

    Peter

    "Christine Lombardo" wrote:

    > I need to create an equation.
    >
    > If (roundup(AE104*2,-3)>=300000) then =300000 or if
    > (roundup(AE104*2,-3)<300000) then =roundup(AE104*2,-3)
    >
    > Basically:
    > If y>=x then x, if y<x then y


  13. #13
    Christine Lombardo
    Guest

    re: Solve IF value

    When I do that it always shows y as true when I know that it is not.

    "pdberger" wrote:

    > Christine --
    >
    > Howz about:
    >
    > =if(y>=x,x,y)
    >
    > hth,
    >
    > Peter
    >
    > "Christine Lombardo" wrote:
    >
    > > I need to create an equation.
    > >
    > > If (roundup(AE104*2,-3)>=300000) then =300000 or if
    > > (roundup(AE104*2,-3)<300000) then =roundup(AE104*2,-3)
    > >
    > > Basically:
    > > If y>=x then x, if y<x then y


  14. #14
    Bob Phillips
    Guest

    re: Solve IF value

    How about

    =MIN(300000,ROUNDUP(AE104*2,-3))

    --

    HTH

    RP
    (remove nothere from the email address if mailing direct)


    "pdberger" <[email protected]> wrote in message
    news:[email protected]...
    > Christine --
    >
    > Howz about:
    >
    > =if(y>=x,x,y)
    >
    > hth,
    >
    > Peter
    >
    > "Christine Lombardo" wrote:
    >
    > > I need to create an equation.
    > >
    > > If (roundup(AE104*2,-3)>=300000) then =300000 or if
    > > (roundup(AE104*2,-3)<300000) then =roundup(AE104*2,-3)
    > >
    > > Basically:
    > > If y>=x then x, if y<x then y




  15. #15
    pdberger
    Guest

    re: Solve IF value

    Christine -- I may not understand what you're trying to accomplish. I
    created the following, which seems to work the way I understand you need:

    A B C

    1 5 4 =IF(A1>=B1,B1,A1)
    2 5 5 copied down...
    3 5 6

    I got the following results: In 'C1' the result was 4, 'C2' was 5, and 'C3'
    was 5. Is that not a simplified version of what you wanted?

    hth


    "Christine Lombardo" wrote:

    > When I do that it always shows y as true when I know that it is not.
    >
    > "pdberger" wrote:
    >
    > > Christine --
    > >
    > > Howz about:
    > >
    > > =if(y>=x,x,y)
    > >
    > > hth,
    > >
    > > Peter
    > >
    > > "Christine Lombardo" wrote:
    > >
    > > > I need to create an equation.
    > > >
    > > > If (roundup(AE104*2,-3)>=300000) then =300000 or if
    > > > (roundup(AE104*2,-3)<300000) then =roundup(AE104*2,-3)
    > > >
    > > > Basically:
    > > > If y>=x then x, if y<x then y


  16. #16
    Christine Lombardo
    Guest

    re: Solve IF value

    Thank you. That worked.

    "Bob Phillips" wrote:

    > How about
    >
    > =MIN(300000,ROUNDUP(AE104*2,-3))
    >
    > --
    >
    > HTH
    >
    > RP
    > (remove nothere from the email address if mailing direct)
    >
    >
    > "pdberger" <[email protected]> wrote in message
    > news:[email protected]...
    > > Christine --
    > >
    > > Howz about:
    > >
    > > =if(y>=x,x,y)
    > >
    > > hth,
    > >
    > > Peter
    > >
    > > "Christine Lombardo" wrote:
    > >
    > > > I need to create an equation.
    > > >
    > > > If (roundup(AE104*2,-3)>=300000) then =300000 or if
    > > > (roundup(AE104*2,-3)<300000) then =roundup(AE104*2,-3)
    > > >
    > > > Basically:
    > > > If y>=x then x, if y<x then y

    >
    >
    >


+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1