+ Reply to Thread
Results 1 to 17 of 17

if statement Simplification

  1. #1
    Registered User
    Join Date
    11-18-2008
    Location
    titicaca
    Posts
    11

    if statement Simplification

    =IF(D6="ELCTR",('eBay Fees'!G6+(T6*(IF(T6>1000,'eBay Fees'!H6+'eBay Fees'!J6+'eBay Fees'!I6,IF(T6>50,'eBay Fees'!H6+'eBay Fees'!I6,'eBay Fees'!H6))))),IF(D6="COMP",('eBay Fees'!G7+(T6*(IF(T6>1000,'eBay Fees'!H7+'eBay Fees'!J7+'eBay Fees'!I7,IF(T6>50,'eBay Fees'!H7+'eBay Fees'!I7,'eBay Fees'!H7))))))),IF(D6="CLOTH",('eBay Fees'!G8+(T6*(IF(T6>1000,'eBay Fees'!H8+'eBay Fees'!J8+'eBay Fees'!I8,IF(T6>50,'eBay Fees'!H8+'eBay Fees'!I8,'eBay Fees'!H8))))),IF(D6="MEDIA",('eBay Fees'!G9+(T6*(IF(T6>1000,'eBay Fees'!H9+'eBay Fees'!J9+'eBay Fees'!I9,IF(T6>50,'eBay Fees'!H9+'eBay Fees'!I9,'eBay Fees'!H9))))),IF(D6="OTHER",('eBay Fees'!G10+(T6*(IF(T6>1000,'eBay Fees'!H10+'eBay Fees'!J10+'eBay Fees'!I10,IF(T6>50,'eBay Fees'!H10+'eBay Fees'!I10,'eBay Fees'!H10))))))))

    iVE ATTACHED THE APP IM USING THIS IN IF INTERESTED. iD LIKE ALL OF EBAY FEES AND PAYPAL FEES FILLED OUT EASILY. EBAY FESS IS JUST LISTING PRICE WHERE AS PAYPAL FEES REFERS TO LISTING PRICE + lISTING shIPPING. IHAVE THE FORMULAS I WAS GOING FOR IN THE FIRST ROW (6). tHESE TWO COLUMNS ARE THE ONLY ONES I DONT HAVE COMPLETED. CAN ANYONE HELP ME FINISH THE,M.

    The attachment inventory is a 2008 format, inv is 97-03
    Attached Files Attached Files
    Last edited by sk81681; 06-02-2009 at 03:31 AM.

  2. #2
    Registered User
    Join Date
    11-18-2008
    Location
    titicaca
    Posts
    11

    Re: if statement Simplification

    On the Ebay fees page, CODE refers to category (D) on Inventory page. If CODE "ELCTR" for example, it will take LISTING PRICE (X) and add a fee of 8% (H), 12.5% if more than $50 (I), 13.5% if more than $1000 (J), and add $.35 (G).
    The Paypal fees (P) refers to the sum of LISTING PRICE and LISTING S&H (X,Y). and charges are 2.9% unless greater than $3000 then its 2.5%plus the constant fee of $.30 per transaction.

    Ive added a newer version of this that Ive been working on wherein there are a couple of new rows and product info to work with. My main problem is getting these formulas to work and then being able to apply to each row quickly as I will have several thousand rows to create when Im finished and it would take a very long time to have to keep typing each one out or copy paste and going in and fixing cells. Let me know if you need more info.

    Also something i wanted to eventually add was a way to take any active (AB) and generate a printable list. to be active (Q) must be less than (S)
    Attached Files Attached Files

  3. #3
    Registered User
    Join Date
    11-18-2008
    Location
    titicaca
    Posts
    11

    Re: if statement Simplification

    Heres a copy of my old sheet that iused. it doesnt have category option but it shows kinda how i want it to work
    Attached Files Attached Files

  4. #4
    Registered User
    Join Date
    11-18-2008
    Location
    titicaca
    Posts
    11

    Re: if statement Simplification

    The Ebay fees: (This is not a working formula, its simply showing what I want the formula to say.)
    ('Inventory!'X * 'eBay Fees'!H) + if > 50, add ('Inventory!'X * 'eBay Fees'!I) + if > 1000, add ('Inventory!'X * 'eBay Fees'!J) + 'eBay Fees'!G
    The row numbers are dependant on category shown ('Inventory'!D)
    This column is to show the Ebay fee which is then added to columns J through P.

    The Paypal Fee:
    ('Inventory'!X + 'Inventory'!Y) * 'eBay Fees'!H (2.9%) (2.5% if sum of 'Inventory'!X:Y > $3000)

    I dont know how to make it any simpler than that. Look at the formulas that are in the spreadsheet already to show where everything is suppose to point.Im including the two worksheets again. inv97-03.xls is the current one. ebay1.xls is my old one that works but you cant choose category (Column D) or or price variable
    Attached Files Attached Files

  5. #5
    Registered User
    Join Date
    11-18-2008
    Location
    titicaca
    Posts
    11

    Re: if statement Simplification

    Alright, everything works in the spreadsheet except for two columns. Ebay Fees (M) and Paypal Fees (P). Please use the spreadsheet Ive included in this reply as it reflects all the new changes Ive made and may be a little easier to understand. The first thing to understand is that the white boxes are user input. Everything in the gray should be formulas that are figured automatically once data is input in the white cells. The Ebay fees category should work like so with the formulas being put into cell M6, M7, M8, and so on and so on. I would like a formula I can copy and paste without having to fix every row. The formula should take the category chosen (Column D) and figure out the fees associated with that category based on price. The price comes from column X LISTING PRICE. So if $100 is input in X6 choosing category OTHER in D6, it would give output of 18.35 (.35 ('eBay Fees'!G10) plus 18% ('eBay Fees'!H10 plus 'eBay Fees'!I10)(18% because the Listing Price is greater than 50). Every category shown should reflect charges on sheet 'eBay Fees'. The Paypal Fees Category should work like so with the formulas being put into cell P6, P7, P8, and so and so on. I would like a formula I can copy and paste without having to fix every row. The starting price for this one comes from column AA ( the sum of listing price(x) and listing shipping(y)). So if 90 is put into x6 and 10 is put into Y6, AA should have output of 100. Then output of P6 should read 3.20 (.3 ('eBay Fees'!G11) plus 2.9% of AA ('eBay Fees'!H11). It would be 2.5% if over 3000. I believe that explains everything as much as possible. The formulas I have in Cells M22, M23, M24, etc and P22, P23, P24, Etc are temp formulas that work because most of my products are in category other and are less than 50 so there is a very simplified formula there. The output should be the same though with a new more complex formula.
    Attached Files Attached Files

  6. #6
    Registered User
    Join Date
    11-18-2008
    Location
    titicaca
    Posts
    11

    Re: if statement Simplification

    its not that hard. Ive got the formula already in M6. It just doesnt work. Everything points where it needs to though. I just dont have experience or knowledge as to why it doesnt work. All im asking is look at the formula and tell me whats wrong. You dont need to understand where its getting what data from where and what its doing. just look at the physical formula and tell me where the error is.I have some formulas starting in M22 that show you exactly what answer you should get. This isnt that hard. ITs a very basic formula. I think you may need to find something youre better at.
    Last edited by sk81681; 06-05-2009 at 03:01 AM.

  7. #7
    Registered User
    Join Date
    11-18-2008
    Location
    titicaca
    Posts
    11

    Re: if statement Simplification

    That kind of works except now Im looking for a way to make it so that I can just copy that cell and paste it on the one underneath and still have it be valid without having to go into the formula and change it manually. You know how it changes the cells when you copy and paste to make it work with the cell you place it in. This formula doesnt work like that.

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

Tags for this Thread

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