How to Change Cell Pattern (Color) in IF function if it the

jlu

New Member
Joined
Oct 8, 2002
Messages
1
I need help from the experts on how to change cell pattern (color) in IF function if it the logic test is true. For example, if S3="Yes", then change the background color of cell S4 to green.

Thank you!
 

Excel Facts

Why are there 1,048,576 rows in Excel?
The Excel team increased the size of the grid in 2007. There are 2^20 rows and 2^14 columns for a total of 17 billion cells.
Hi - welcome to the board!

You need 'conditional formatting' - check it out in the help files, & post back if you need more...

Paddy
 
Upvote 0
On 2002-10-09 16:50, jlu wrote:
I need help from the experts on how to change cell pattern (color) in IF function if it the logic test is true. For example, if S3="Yes", then change the background color of cell S4 to green.

Thank you!

(1.) Select S4.
(2.) Activate Format|Conditional Formatting.
(3.) Choose Formula Is for Condition 1.
(4.) Enter as formula:

=$S$3="Yes"

(5.) Activate the Format button.
(6.) Choose a color on the Patterns tab.
(7.) Click OK, OK.
 
Upvote 0
If it is a macro that you wish to use, the correct syntax would be something like this:

If Range("S3").value= "Yes" then
Range("S3").interior.colorindex = 4
else
end if
This message was edited by Wingz on 2002-10-09 16:58
This message was edited by Wingz on 2002-10-09 16:58
This message was edited by Wingz on 2002-10-09 16:59
 
Upvote 0

Forum statistics

Threads
1,215,639
Messages
6,125,971
Members
449,276
Latest member
surendra75

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top