Computing.Net > Forums > Office Software > Table formula

Computer Problems? Computing.Net has over 1,000,000 posts about all things technology related! Over 90% answered within 24 hours! Click here to start participating now! Also, be sure to check out the New User Guide.

Table formula

Reply to Message Icon

Name: fritman99
Date: August 31, 2009 at 19:02:06 Pacific
OS: Windows XP
Product: Microsoft Word 2003 win32(full prod)
Subcategory: Microsoft Office
Tags: Word, formula, excel, table
Comment:

I am creating a form in Word 2003 includes a table for calculating personnel evaluation ratings. The user will use the table to input whole number grades into cells A1 through A6; the numerical grades for each cell range from 1 (unacceptable) to 5 (outstanding). The rules of our evaluation system say that the final rating will be an average of the six grades entered, unless one of them is a 1. In that case the final rating must be a 1.

I want to add a formula to cell A7 that will calculate the final rating for the grades entered following those rules. I have been able to create a formula in Excel that works: =IF(OR(A1=1, A2=1, A3=1, A4=1, A5=1, A6=1),"1",AVERAGE(A1:A6)), but when I create a field in cell A7 in Word and add that formula to it, I get a syntax error because of the commas. Can anyone help me with the right syntax for that formula in Word? Thanks so much.



Sponsored Link
Ads by Google

Response Number 1
Name: DerbyDad03
Date: August 31, 2009 at 20:16:13 Pacific
Reply:

I've never tried a complex formula in Word before and was surprised about how few examples I was able to find via the Word Help files and/or Google.

Anyway, through trial and error, I ended up getting this to work:

=IF(OR(A1=1,A2=1),1,IF(OR(A3=1,A4=1),1,IF(OR(A5=1,A6=1),1,AVERAGE(A1:A6))))

I couldn't find any way to get OR to look at any more than 2 arguments without getting a Syntax error on the comma.

Maybe you could try your question here:

http://groups.google.com/group/micr...

You'll have to register first.


0

Response Number 2
Name: DerbyDad03
Date: September 1, 2009 at 06:26:15 Pacific
Reply:

P.S. Don't use the "" around the 1 or you'll get a Syntax error on that also.


0

Sponsored Link
Ads by Google
Reply to Message Icon

Related Posts

See More






Use following form to reply to current message:

Login or Register to Reply
LoginRegister


Sponsored links

Ads by Google


Results for: Table formula

Maths Formulae Anyone? www.computing.net/answers/office/maths-formulae-anyone/155.html

Adding numbers in Word www.computing.net/answers/office/adding-numbers-in-word/6429.html

Excel: Formula? (see inside) www.computing.net/answers/office/excel-formula-see-inside/5296.html