+ Reply to Thread
Results 1 to 4 of 4

IF function

  1. #1
    B G
    Guest

    IF function

    I know absolutely nothing about IF functions but I know I want to use one in
    a spreadsheet.

    Basically I want multiply by $10 the amount in column T (a weight) if the
    amount in column F equals PB ( a disposal site).

    Can someone please give me a little assistance. Thanks
    --
    Barb

  2. #2
    Forum Expert mrice's Avatar
    Join Date
    06-22-2004
    Location
    Surrey, England
    MS-Off Ver
    Excel 2013
    Posts
    4,967

    Response

    Try

    =if(F1 = "PB",10*T1,"")

    into a cell on row 1
    Martin

  3. #3
    Ron Coderre
    Guest

    RE: IF function

    Try one of thse:

    =(T1*10)*(F1="PB")

    or

    =IF(F1="PB",T1*10,"")

    Is that something you can work with?

    ***********
    Regards,
    Ron

    XL2002, WinXP


    "B G" wrote:

    > I know absolutely nothing about IF functions but I know I want to use one in
    > a spreadsheet.
    >
    > Basically I want multiply by $10 the amount in column T (a weight) if the
    > amount in column F equals PB ( a disposal site).
    >
    > Can someone please give me a little assistance. Thanks
    > --
    > Barb


  4. #4
    Toppers
    Guest

    RE: IF function

    Something like:

    =if(F1="PB",T1*10,0)

    What if F does not equal PB (amount?) .... what is the required result? In
    the above, the answer is 0.

    HTH

    "B G" wrote:

    > I know absolutely nothing about IF functions but I know I want to use one in
    > a spreadsheet.
    >
    > Basically I want multiply by $10 the amount in column T (a weight) if the
    > amount in column F equals PB ( a disposal site).
    >
    > Can someone please give me a little assistance. Thanks
    > --
    > Barb


+ 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