+ Reply to Thread
Results 1 to 4 of 4

changing multiplier IF......

  1. #1
    Registered User
    Join Date
    06-14-2007
    Posts
    3

    changing multiplier IF......

    Please can anyone help me.

    I have two numbers A and B
    A is any number between 1 to 40
    B=80
    C=A*B
    I want a formula that when A is greater than 40 , B will change to 100.

  2. #2
    Forum Contributor
    Join Date
    12-12-2006
    Location
    New Zealand
    Posts
    151
    You need to use another cell and use formula:

    =IF(A1>80,100,B1)

    so if A1 is greater than 80 cell value = 100 if not cell value = B1 (1 to 40)

  3. #3
    Registered User
    Join Date
    04-30-2006
    Posts
    55
    You don't need another cell. Just paste this in C1:

    =if(A1>40;A1*100;A1*B1)

    Although I would put the value 100 in a cell as well, keeping it dynamic... ;-)

    Peter

  4. #4
    Registered User
    Join Date
    06-14-2007
    Posts
    3
    Thank you both for the help. The two formulae work fine.

+ 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