| Trusted Advisor with 3,949 posts. | | Join Date: Jun 2003 Location: Northern California | |
Hi Eraserboy, welcome to TSG.
You don't say what program you're using, but I assume Excel? If so, you can use an if formula. You don't say what value you need to find in column H, but I'll use 5 as the example. You'd put this formula in R1 and drag it down the rest of the column.
=IF(H1=5,-5,H1)
The formula says "if the value in H1 is 5, then make R1 = -5. If not, make it the same as H1". Replace the 5 and -5 with whatever value you need.
Hope that helps. |