Results 1 to 3 of 3
  1. #1
    shantmov is offline Novice
    Windows 7 64bit Access 2010 64bit
    Join Date
    Nov 2012
    Posts
    2

    Need help with builder formula

    I need some help building an expression in Microsoft Access. The first 50 dollars of an item sold is charged a 10% commission rate. For example, ($50.00 x 10%). Any amount over 50 dollars is charged 8%. For example, an item sold at $75 will have a formula of ($50 x 10% + $25 x 8%). I have literally been trying for the past 2 days. Any and all help is greatly appreciated.

  2. #2
    June7's Avatar
    June7 is offline VIP
    Windows XP Access 2010 32bit
    Join Date
    May 2011
    Location
    The Great Land
    Posts
    53,601
    Commission: x * 0.10 + IIf(x>50, (x-50) * 0.08, 0)
    How to attach file: http://www.accessforums.net/showthread.php?t=70301 To provide db: copy, remove confidential data, run compact & repair, zip w/Windows Compression.

  3. #3
    shantmov is offline Novice
    Windows 7 64bit Access 2010 64bit
    Join Date
    Nov 2012
    Posts
    2

    Thumbs up Thank You

    Quote Originally Posted by June7 View Post
    Commission: x * 0.10 + IIf(x>50, (x-50) * 0.08, 0)
    You don't understand the headache you just saved me. Thanks for the help.

Please reply to this thread with any new information or opinions.

Similar Threads

  1. report builder
    By slimjen in forum Reports
    Replies: 8
    Last Post: 04-23-2012, 05:30 PM
  2. Expression builder help
    By jigg14 in forum Forms
    Replies: 1
    Last Post: 03-19-2012, 09:47 AM
  3. Expression Builder not there
    By schnuber in forum Access
    Replies: 1
    Last Post: 02-17-2012, 01:17 AM
  4. Expression builder
    By PJ_d_DJ in forum Access
    Replies: 2
    Last Post: 02-24-2011, 03:38 AM
  5. Epression Builder
    By ehrendreich in forum Programming
    Replies: 1
    Last Post: 12-26-2009, 02:33 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Other Forums: Microsoft Office Forums