Advertisement

10.28.2007 at 01:12PM PDT, ID: 22923292
[x]
Attachment Details
[x]
The Solution Rating System

With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.

  • The Grade of the Solution
  • The Zone Rank of the Expert Providing the Solution
  • The Number of Author and Expert Comments
  • The Number of Experts Contributing
  • The Feedback of the Community

Your Input Matters
Because of the way the system is set up, the most important variable in this equation is you. As a member of Experts Exchange, you are able to cast your vote on the quality of the solutions in regard to how complete, accurate, helpful and easy to understand each solution is. When you provide your feedback, each rating is adjusted accordingly. So, if you see a solution that has a poor rating that you think is a good solution, let us know by rating it. As you do, the rating will be adjusted and will become more accurate for other members of our site.

If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support.

Thank you!

Math calculations in a table by row

Tags: math, calculations, access, table
Hello. I'm looking for advice to a project.  I am not too sure how to approach the project so here are the details. What I want to do is to create an online form of products that:
- is easy to maintain and update
- can perform basic math calculations
- can suggest complementary products to items that the user adds
- users can submit the form and send it to me
- eventually (2-3 years) have online ordering

I can create a database, using those handy wizards, in m$ access to do the calculations. But my experience with actual code writing is basic and i have no experience with online databases or any type of scripting language. Looking ahead I will probably hire someone for online ordering so there are no security issues but I would be maintaining it so I prefer to learn how to create it.  From my criteria I am assuming that I should do it in a database and I can add functions as I go...?

For now I am just looking for a basic online form that performs basic math. I am using Dreamweaver creating the website and there is a addon that allows for math calculations but it would put a heavy load on the user and is extremely hard to maintain. What I would like to do is to perform calculations based upon numbers/values in cells under specific columns instead of using hidden input values. Here is an example table:

<form name="Cold_Appetizers" name="Cold_Appetizers">
 <table>
  <tr>
   <th>Amount</th>
   <th>Item</th>
   <th>Price</th>
   <th>Minimum Servings</th>
   <th>Maximum Servings</th>
   <th>Total</th>
   <th>Minimum Serves</th>
   <th>Maximum Serves</th>
  </tr>

  <tr>
   <td>  <input type="text" name="amount1" id="amount1" />  </td>
   <td>  Cheese Tray  </td>
   <td>  10.00  </td>
   <td>  5  </td>
   <td>  15  </td>
   <td>  <input type="text" name="total1" id="total1" readonly="true" />  </td>
   <td>  <input type="text" name="min1" id="min1" readonly="true" />  </td>
   <td>  <input type="text" name="max1" id="max1" readonly="true" />  </td>
  </tr>

  <tr>
   <td>  <input type="text" name="amount2" id="amount2" />  </td>
   <td>  Fruit Tray  </td>
   <td>  15.00  </td>
   <td>  10  </td>
   <td>  20  </td>
   <td>  <input type="text" name="total2" id="total2" readonly="true" />  </td>
   <td>  <input type="text" name="min2" id="min2" readonly="true" />  </td>
   <td>  <input type="text" name="max2" id="max2" readonly="true" />  </td>
  </tr>

 </table>
 <table>
  <tr>
   <th>  Grand Total  </th>
   <th>  Approx. Minimum Servings  </th>
   <th>  Approx. Maximum Servings  </th>
  </tr>

  <tr>
   <td>  <input type="text" name="grand_total" id="grand_total" readonly="true" />
   <td>  <input type="text" name="avg_min_serves" id="avg_min_serves" readonly="true" />
   <td>  <input type="text" name="avg_max_serves" id="avg_max_serves" readonly="true" />
  </tr>
 </table>
</form>

There are 200+ items and I already have all the items and descriptions in various types of formats. I have it in an access database, xml,  and in tables. I just don't know where to begin. Please advise.


Thanks in advance.
Start your free trial to view this solution
Question Stats
Zone: Other
Question Asked By: BBGC
Solution Provided By: amir22651
Participating Experts: 2
Solution Grade: B
Views: 27
Translate:
Loading Advertisement...
11.06.2007 at 01:07AM PST, ID: 20222309

All comments and solutions are available to Premium Service Members only.

Start your 7-day free trial and see for yourself why Experts Exchange is the easiest and most proven technology resource in the world. Get Started

Already a member? Login to view this solution.

 
05.18.2008 at 02:00AM PDT, ID: 21592011

All comments and solutions are available to Premium Service Members only.

Start your 7-day free trial and see for yourself why Experts Exchange is the easiest and most proven technology resource in the world. Get Started

Already a member? Login to view this solution.

 
 
Loading Advertisement...
20080236-EE-VQP-29 / EE_QW_2_20070628