Mar 14 2023 07:16 AM
Hello,
I am looking for help on how to force a cell to have a specific value only if certain criteria is met, otherwise the cell can have other values.
A | B | C | D | E | F |
YES | 500 | 1000 |
I want column A to always be "YES" if the sum(B:F)>0, otherwise A can be YES, or NO. How can I accomplish this?
Mar 14 2023 07:33 AM
Mar 14 2023 08:39 AM
SolutionEnter YES and NO in two cells, e.g. in M1 and M2.
Let's say row 1 contains headers, and you have data in rows 2 to 50.
Select A2:A50. A2 should be the active cell in the selection.
On the Data tab of the ribbon, click Data Validation.
Select List from the Allow drop down.
Enter the following in the Formula box:
=IF(SUM(B2:F2)>0,$M$1,$M$1:$M$2)
Click OK.
This will let users select only YES in column A if the sum of columns B to F is positive, but it doesn't automatically change the value of column A to YES. If you want that, you'd need a bit of VBA code.