IF Function Decision: Action based on condition. Examples SF State Tuition calculation: –http://bulletin.sfsu.edu/sfstatebulletin/fees/fee/ Fees_and_Expenses.

Slides:



Advertisements
Similar presentations
Return on Investment Analysis
Advertisements

How it All Works… Scholarships and Financial Aid.
If Function Determine action based on condition. Examples Simple condition: –If total sales exceeds $300 then applies 5% discount; otherwise, no discount.
Presentation for Company x
Work with Data and Decision Structure. Murach’s Java SE 6, C3© 2007, Mike Murach & Associates, Inc. Slide 2.
©Brooks/Cole, 2001 Chapter 5 Selection-- Making Decision.
Sold merchandise to a customer on account, customer is tax exempt.
Assessing Business Performance Chapter 6. Structure of Balance Sheet Current assets$100 Other assets500 Total assets$600 Page 127.
Pricing in Sales and Distribution (SD)  Companies have developed numerous pricing and discount strategies—some unencumbered by any logical methodology.
Tax Preparation. Federal Income Tax Structure  Federal and State income taxes are progressive tax  The higher your income, the greater percentage is.
Press Ctrl-A ©G Dear 2009 – Not to be sold/Free to use Calculating Tax Stage 6 - Year 11 General Mathematics Preliminary.
Nested IF and Complex Condition. Nested IF Example: –Rules to determine bonus: JobCode = 1, Bonus=500 JobCode = 2, Bonus = 700 JobCode = 3, Bonus = 1000.
VB.Net Introduction - 2. Counter Example: Keep track the number of times a user clicks a button Need to declare a variable: Dim Counter As Integer Need.
IF Function Decision: Action based on condition. Examples SF State Tuition calculation: –
Chapter 4 Lecture 3 Tax Planning and Strategies. Individual Income Tax Formula Total Income (everything received) - Exclusions/Tax-exempt Income_______________.
Tax Preparation Financial Literacy.
Hope Tax Credit Lifetime Learning Tax Credit Tuition and Fees Deduction Important Information for 2008 Returns Qualified Tuition Programs Qualified Education.
1 Important Information for 2011 Returns American Opportunity Tax Credit Lifetime Learning Tax Credit Tuition and Fees Deduction Qualified Tuition Programs.
impact of OPERATIONS SPENDING impact of STUDENT SPENDING impact of ALUMNI.
Global Real Estate: Transaction Tools Chapter 6: Value Concepts.
TAX TALK. Business or Hobby? Starting a Business: Which Entity is Right for Me? Types of Taxes Business Expenses Tax Benefits of College Costs TOPICS.
Chapter 5 Spend Wisely.
 Taxes have been around for many years. It all started in 1861 when congress passed the revenue act during the civil war. The taxes helped pay for the.
Work with Data and Decision Structure. Slide 2 Note: String and Date are classes.
A business needs to keep track of all their income - REVENUE and EXPENSES. Any money coming in to a business is recorded as revenue. Any money going out.
©2013 Cengage Learning. All Rights Reserved. May not be scanned, copied or duplicated, or posted to a publicly accessible website, in whole or in part.
Tri-County Technical College SEPTEMBER Calculate initial sales generated in region Derive sales created by multiplier effects Convert results.
Chapter 21 Variable Costing
Decision Structure - 1 ISYS 350. Decision: Action based on condition Examples Simple condition: – If total sales exceeds $300 then applies 5% discount;
Sales Tax and Discount. Sales tax is an additional amount of money charged on items that people buy. The total cost of an item is the regular price plus.
Expression and Decision Structure ISYS 350. Performing Calculations Basic calculations such as arithmetic calculation can be performed by math operators.
1 Taxation Press Ctrl-A ©2009 – Not to be sold/Free to use Stage 5 Year 9.
1 Income Statement. 1.Buying a horse (for me!) 2.How much did I pay? 3.What do I have invested in it? 4.What to sell it for? Simple Transaction.
Chapter 12 Notes Paying for Government. Raising Money I. Government is Expensive.
Decisions Action based on condition. Examples Simple condition: –If total sales exceeds $300 then applies 5% discount; otherwise, no discount. More than.
CENTURY 21 ACCOUNTING © 2009 South-Western, Cengage Learning LESSON 14-2 Budgeted Income Statement.
Mr. Sands 6.3.  1.Price x sales tax rate = sales tax --Instead of subtracting like discount you add to the price. 2.Price + sales tax = total cost 3.Discount.
Pay Yourself First Financial Capability. Pay Yourself First Income – any money you receive Expenses – what you spend money on Spending plan – a plan for.
DIRECT MATERIAL + DIRECT LABOUR + DIRECT EXPENSES = PRIME COST.
Barton Community College FY Calculate initial sales generated in region Derive sales created by multiplier effects Convert results to income.
CENTURY 21 ACCOUNTING © Thomson/South-Western LESSON 14-6 Calculating Federal Income Tax and Completing a Work Sheet.
Decision Structure - 1 ISYS 350. Decision: Action based on condition Examples Simple condition: – If total sales exceeds $300 then applies 5% discount;
Functions BUS 782. What are functions? Functions are prewritten formulas. We use functions to perform calculations. Enclose arguments within parentheses.
IF Function Decision: Action based on condition. Examples SF State Tuition calculation: –
Business Technology Mr. Bernstein Greene, pp : Analysis Using Financial Statements December 10, 2013.
Decision Structure - 2 ISYS 350.
LESSON 18-5 Declining-Balance Method of Depreciation
Decision Structure ISYS 350.
Generic Note Receivable Entries in T Accounts
Decision Structure - 1 ISYS 350.
How tax is calculated on your Taxable income Example Your gross income = $126,000 Your deduction = $ 6,000 Taxable income = $120,000.
EXTENDING BALANCE SHEET ACCOUNT BALANCES ON A WORK SHEET
Decision Structure - 2 ISYS 350.
Decision Structure - 1 ISYS 350.
Selection-- Making Decision
Work with Data and Decision Structure
CALCULATING COMPONENT PERCENTAGES
Decision Structures ISYS 350.
Spreadsheet Review.
Decision Structure - 1 ISYS 350.
Decision: Action based on condition
Functions BUS 782.
Chapter 1-part 3 Business Taxes.
Decision Structure - 1 ISYS 350.
LESSON 6-3 Extending Financial Statement Information on a Work Sheet
Extending Financial Statement Information on a Work Sheet
Do Now Write out the three branches of Minnesota state government.
LESSON 14-6 Calculating Federal Income Tax and Completing a Work Sheet
This is your total income tax payable. Write this down.
Presentation transcript:

IF Function Decision: Action based on condition

Examples SF State Tuition calculation: – Fees_and_Expenses –Simple condition PG&E electric charges: – money/plans/tiers/index.page –More than one condition

Examples Simple condition: –If total sales exceeds $300 then applies 5% discount; otherwise, no discount. More than one condition: Taxable Income < =3000 no tax 3000 < taxable income <= % tax Taxable income > % tax Complex condition: –If an applicant’s GPA > 3.0 and SAT > 1200: admitted

Comparison Less than: < Less than or equal: <= Greater than: > Greater than or equal: >= Equal: = Not equal: <> –At least: >= –At most: <= –No more than: <= –No less than: >= A comparison returns True/False.

IF Function =IF(condition, ValueIfTrue,ValueIfFalse) Example: –Tuition: If total units <= 12, then tuition = 1200 »Otherwise, tuition = per additional unit In Cell C2: IF(B2<=12, 1200, *(b2-12))

Example: Compute weekly wage. Overtime hours are paid 50% more than the regular pay. In Cell D2: If(C2<=40, B2*C2, B2* *B2*(C2-40))

Example: Tax rate is based on married status: –Single: 15% –Married: 10% –In D5: If(B5=“S”,$C$1*C5, $C$2*C5)

Example: A restaurant charges service fee based on this rule: 15% of the check amount with a minimum of $2.

Exercises 1. The average of two exams is calculated by this rule: 60% * higher score + 40% * lower score. 2. An Internet service provider offers a service plan that charges customer based on the following rules: The first 20 hours: $10 Each additional hour: $1.5

Nested IF Example: –Rules to determine bonus: JobCode = 1, Bonus=500 JobCode = 2, Bonus = 700 JobCode = 3, Bonus = 1000 –In C2: If(B2=1, 500, If(B2=2, 700, 1000))

JobCode= 1 Or <> =1 JobCode=2 Or <>

Example Electric Company charges customers based on KiloWatt-Hour used. The rules are: –First 100 KH,20 cents per KH –Each of the next 200 KH ( up to 300 KH), 25 cents per KH –All KH over 300, 30 cents per KH In C2: If(B2<=100,.2*B2,If(B2<=300,.2* *(B2- 100),.2* *200+.3*(B2-300))

What if we have more than 3 conditions Example: Bonus –JobCode = 1, Bonus = 500 –JobCode = 2, Bonus = 600 –JobCode = 3, Bonus = 700 –JobCode = 4, Bonus = 800 –JobCode = 5, Bonus = 1000 –… Other functions: –Table lookup

Example State University calculates students tuition based on the following rules: –State residents: Total units taken <=12, tuition = 1200 Total units taken > 12, tuition = per additional unit. –Non residents: Total units taken <= 9, tuition = 3000 Total units taken > 9, tuition = per additional unit.

Resident or Not Units <= 12 or Not Units <= 9 or Not

Date & Time Functions How Excel handles dates: –Serial #: 1/1/1900 – day 1 Functions: –Today() – today’s date –Now() – current date and time –Year(a date) –Month(a date) –Weekday(a date)

Examples Tomorrow’s date? How many days to Christmas? Compute the age given a date of birth.