Jeanette
You say "when I put /9 I get the message invalid": Where do you put /9 exactly?
Aladin
Jeanette,
I think what you are trying to do is use an array formula to perform a conditional calculation.
Assuming that your original data resides in Row 98, Columns E through O, highlight another row, say Row 99, Columns E through O.
(This range will contain your processed data.)
Type =if(E98:O98>1,E98:O98/9,"") and then press Ctrl-Shift-Enter to activate the cells.
I think the problem you ran into is that when you use array functions, multiple ranges in the same function all have to be the same size.
I hope this helps.
Thanks for the reply, I tried =IF(E98:O98>1,E98:O98/9,"")then Ctrl-Shift-Enter, and I get the error message value, which I looked up in the 'Help' but didn't understand what it said.
Am I asking it the right question with the "IF" statement? All I want it to do is , if there is a dollar amount entered in any of a selected range of cells then divide that cell contents by 9 and entere it in another column. All the selected cells have the $ sign where an amount is enterd
=============
Jeanette
Activate E99, type the formula
=IF(E98:O98>1,(E98:O98)/9,"") or rather
=IF(E98:O98>1,(E98:O98)/9,E98:O98) if you want to preserve the numbers that are not greater than 1,
then select the range F99:O99. While the range E99:O99 is selected, go to the formula bar where you see the formula that you just typed, hit CONTROL+SHIFT+ENTER at the same time. As a result, you'll see the range E99:O99 filled up with the values you are after.
Note. If you use the second formula, you can copy the range E99:O99 and paste them over the original values by activating Paste Special and using the option Values. Then delete everything in E99:O99.
Aladin