J
Jerry
I have a table in a Word "Form" 2000 document that I am
attempting to use an IF statement to return numeric values
for specific text entries from one cell to another. The
user will enter one of the following:
Very High
High
Medium
Low
The corresponding return in another cell within the same
table should return 20 for Very High, 10 for High, 5 for
Medium, and 1 for Low.
The following expression works in Excel, but I cannot seem
to get it transposed to work with word's field braces;
where risk1 = the bookmark name:
IF(risk1="Very High",20,(IF(risk1="High",10,(IF
(risk1="Medium",4,(IF(risk1="Low",1,(IF
(risk1="N/A",0)))))))))
Any help provided is appreciated...
Jerry
attempting to use an IF statement to return numeric values
for specific text entries from one cell to another. The
user will enter one of the following:
Very High
High
Medium
Low
The corresponding return in another cell within the same
table should return 20 for Very High, 10 for High, 5 for
Medium, and 1 for Low.
The following expression works in Excel, but I cannot seem
to get it transposed to work with word's field braces;
where risk1 = the bookmark name:
IF(risk1="Very High",20,(IF(risk1="High",10,(IF
(risk1="Medium",4,(IF(risk1="Low",1,(IF
(risk1="N/A",0)))))))))
Any help provided is appreciated...
Jerry