ComputerForum.com ComputerForum.com  
TigerDirect
 
Go Back   Computer Forum > Computer Software > General Software

Reply
 
LinkBack Thread Tools Display Modes
Old 01-29-2008, 09:11 PM   #1 (permalink)
Diamond Member
 
ukulele_ninja's Avatar
 
Join Date: Jul 2007
Location: Ohio
Posts: 2,275
Default Advanced Excel Questions

Im using Excel 200 just as a reference...

Ive made a spreadsheet to use with ebay to determine final gain of an item once Ive sold it. I use it while im at the store, so if i see a good bargain, I can quickly determine what i will make off of buying it cheap and reselling it. So here is how I have the spreadsheet laid out right now:



I have the autosum set so that cells in columns B, D, E, F, G, and H auto add themselves into cell I to give me my total.

What I need to do still is figure out a way to auto calculate ebay and paypal fees based on the amount that is plugged into cells C and D. Ebay charges by how much an auction starts for, and how much the item actualy sells for. Paypal charges by the amount transfered into your account from another member.

The Ebay price tier can be found here: http://pages.ebay.com/help/sell/fees.html

So how do I tell excel to add the correct amounts based on what number is inputed into cells C and D.

If any of this is not making sense, let me know and I will try to clear it up. Thanks!
__________________
Do you remember when the tigers broke free?

CF COD4: CF|UkuleleNinja
ukulele_ninja is offline   Reply With Quote


Old 01-29-2008, 09:16 PM   #2 (permalink)
Diamond Member
 
imsati's Avatar
 
Join Date: Sep 2007
Location: EHT, NJ
Posts: 2,547
Default

I'm a self-proclaimed demigod with making super-complex stuff in Excel super easy to read/use. If you'd like to send it my way, I can take a look and either offer suggestions or tweak it a bit if you'd like. I'm not certain when I'll have time to look at it, but I will ASAP!
__________________
--Jay
Gigabyte EP31-DS3L | E4500 | Masscool HSF paired with AS-5
80 GB SATA2 x 2 | e-GeForce 7100 GS | CM Elite 330 (gorgeous!)
Triple Boot: Ubuntu 7.10/XP Home/Kubuntu 7.10


You do realize that everytime PC eye Posts, God kicks a puppy, and every time someone takes his advice, He smothers a kitten in front of a child, right?
http://www.computerforum.com/114761-...tml#post922619
imsati is offline   Reply With Quote
Old 01-29-2008, 09:17 PM   #3 (permalink)
Diamond Member
 
Beyond's Avatar
 
Join Date: Jun 2005
Location: Computer Engineering @ NCSU
Posts: 1,271
Default

You'll need to use an IF statement.
__________________
EVGA 680i // Antec P180B
Intel Core 2 Duo E6600
2GB Corsair XMS2 Dominator
EVGA 8800GTX > MAG 22" (x2)
Audigy 2 ZS > a) PA2V2 > Alessandro MS-1s (music); b) Pioneer VSX-516-K/S > Insignia NS-B2111 (2)
74GB WD Raptor | 500GB WD Caviar SE16
Antec TruePower 2.0

..at factory timings.
Beyond is offline   Reply With Quote
Old 01-29-2008, 09:20 PM   #4 (permalink)
Diamond Member
 
ukulele_ninja's Avatar
 
Join Date: Jul 2007
Location: Ohio
Posts: 2,275
Default

Well all the info is stated, I just need to know how to write an equation that says 'If x amount equals an amount greater than Y but less than T add R amount to I4'
__________________
Do you remember when the tigers broke free?

CF COD4: CF|UkuleleNinja
ukulele_ninja is offline   Reply With Quote
Old 01-29-2008, 09:21 PM   #5 (permalink)
Diamond Member
 
ukulele_ninja's Avatar
 
Join Date: Jul 2007
Location: Ohio
Posts: 2,275
Default

Quote:
Originally Posted by Beyond View Post
You'll need to use an IF statement.
Im really new to the writing equations thing though, how do you use the 'If' statement?
__________________
Do you remember when the tigers broke free?

CF COD4: CF|UkuleleNinja
ukulele_ninja is offline   Reply With Quote


Old 01-29-2008, 09:37 PM   #6 (permalink)
New Member
 
Join Date: Dec 2007
Posts: 14
Default

Nested IF statements is what you will need to calculate the fee structure. Copy and paste the below statement into cell F4.

=IF(C4>500,4.8,IF(C4>200,3.6,IF(C4>50,2.4,IF(C4>25 ,1.2,IF(C4>10,0.6,IF(C4>1,0.4,0.2))))))+IF(D4>1000 ,(1.31+31.69+0.015*(D4-1000.01)),IF(D4>25,(1.31+0.0325*(D4-25.01)),IF(D4>0.01,0.0525*D4,0)))
cosine4 is offline   Reply With Quote
Old 01-29-2008, 09:38 PM   #7 (permalink)
Diamond Member
 
ukulele_ninja's Avatar
 
Join Date: Jul 2007
Location: Ohio
Posts: 2,275
Default

Alright I wrote this simple If statement:

=IF(C5<10,(C5+0.4),(C5+0.6))

This tells excel if the starting price of an item less than $10, add 40 cents to the price in the ebay fees cell, but if its above $10, add 60 cents. This works, but obviously there are different tiers for pricing. Can I write a similar statement for each tier? but instead of the second argument just leave it as C5?
__________________
Do you remember when the tigers broke free?

CF COD4: CF|UkuleleNinja
ukulele_ninja is offline   Reply With Quote
Old 01-29-2008, 09:42 PM   #8 (permalink)
Diamond Member
 
Beyond's Avatar
 
Join Date: Jun 2005
Location: Computer Engineering @ NCSU
Posts: 1,271
Default

I do it so much I really don't want to look at cosine's nested statement, but he has the right idea.
__________________
EVGA 680i // Antec P180B
Intel Core 2 Duo E6600
2GB Corsair XMS2 Dominator
EVGA 8800GTX > MAG 22" (x2)
Audigy 2 ZS > a) PA2V2 > Alessandro MS-1s (music); b) Pioneer VSX-516-K/S > Insignia NS-B2111 (2)
74GB WD Raptor | 500GB WD Caviar SE16
Antec TruePower 2.0

..at factory timings.
Beyond is offline   Reply With Quote
Old 01-29-2008, 09:45 PM   #9 (permalink)
Diamond Member
 
JLV2k5's Avatar
 
Join Date: Dec 2007
Location: University of Delaware
Age: 21
Posts: 1,300
Default

Yes. Search If statements in the help search command within excel, this should help you allot. Also, try looking at excel loops and if statements online on other sites to assist you. GL
__________________

Can't wait to finish college and build my system.
JLV2k5 is offline   Reply With Quote
Old 01-29-2008, 09:46 PM   #10 (permalink)
VIP Member
 
Trizoy's Avatar
 
Join Date: Apr 2005
Location: Campbell, Ca
Posts: 4,650
Default

Cosine has it... I was about to write it, thx for getting me out of it.

You dont have to finish the IF statement there, for example =IF(AND(A1>1,A1<5),"Tier1",IF(AND(A1>5,A1<10),"Tie r2",....
Where the function finishes and you can put the if true or false you can write another if statement. So if A1 is between 1 and 5 it will answer Tier1, if not it will do the next IF statement... You can keep it going for a while...
__________________
01100110 01100001 01110010 01110100

Last edited by Trizoy; 01-29-2008 at 09:50 PM.
Trizoy is offline   Reply With Quote
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
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
Plethera of Questions Stephanie2008 Desktop Computers 14 01-09-2008 02:05 PM
Two questions about Excel 2003 jaes General Software 2 03-08-2007 07:40 AM
Built new rig, and have a few questions Pc_Pimp Desktop Computers 11 01-14-2007 08:50 PM
Questions, Questions, Questions! g4m3rof1337 General Computer Chat 3 11-05-2006 09:16 AM
Linking Access and Excel Ryad General Software 1 12-06-2004 03:47 PM


All times are GMT +1. The time now is 09:03 AM.


Powered by: vBulletin Version 3.7.2
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
SEO by vBSEO 3.1.0 ©2007, Crawlability, Inc.
Copyright © 2002-2007 Computer Forum and Web Design Forum