I am trying to do some conditional formatting which I feel should be simple but I am getting nowhere
[TABLE="width: 380"]
<TBODY>[TR]
[TD]Product type</SPAN>
[/TD]
[TD]Code</SPAN>
[/TD]
[TD]Area</SPAN>
[/TD]
[/TR]
[TR]
[TD]X</SPAN>
[/TD]
[TD]1-A-3-008</SPAN>
[/TD]
[TD]W-1 Back26</SPAN>
[/TD]
[/TR]
[TR]
[TD]Y</SPAN>
[/TD]
[TD]3-B-1-023</SPAN>
[/TD]
[TD]W-1 Back23</SPAN>
[/TD]
[/TR]
[TR]
[TD]X</SPAN>
[/TD]
[TD]9-N-4-369</SPAN>
[/TD]
[TD]W-2 Front2</SPAN>
[/TD]
[/TR]
[TR]
[TD]N</SPAN>
[/TD]
[TD]7-Y-8-028</SPAN>
[/TD]
[TD]W-2 Back69</SPAN>
[/TD]
[/TR]
[TR]
[TD]Y</SPAN>
[/TD]
[TD]6-V-7-058</SPAN>
[/TD]
[TD]W-3 Left 78</SPAN>
[/TD]
[/TR]
[TR]
[TD]Y</SPAN>
[/TD]
[TD]2-S-5-014</SPAN>
[/TD]
[TD]W-1 Front7</SPAN>
[/TD]
[/TR]
[TR]
[TD]X</SPAN>
[/TD]
[TD]4-F-8-963</SPAN>
[/TD]
[TD]W-2 Right 8</SPAN>
[/TD]
[/TR]
[TR]
[TD]N</SPAN>
[/TD]
[TD]8-G-7-214</SPAN>
[/TD]
[TD]W-2 Front2</SPAN>
[/TD]
[/TR]
[TR]
[TD]B</SPAN>
[/TD]
[TD]3-B-1-089</SPAN>
[/TD]
[TD]W-2 Back69</SPAN>
[/TD]
[/TR]
[TR]
[TD]Y</SPAN>
[/TD]
[TD]9-N-4-769</SPAN>
[/TD]
[TD]W-3 Left 78</SPAN>
[/TD]
[/TR]
[TR]
[TD]H</SPAN>
[/TD]
[TD]7-Y-8-022</SPAN>
[/TD]
[TD]W-1 Front7</SPAN>
[/TD]
[/TR]
[TR]
[TD]V</SPAN>
[/TD]
[TD]6-Q-7-058</SPAN>
[/TD]
[TD]W-2 Right 8</SPAN>
[/TD]
[/TR]
[TR]
[TD]N</SPAN>
[/TD]
[TD]5-C-6-589</SPAN>
[/TD]
[TD]W-2 Front2</SPAN>
[/TD]
[/TR]
</TBODY>[/TABLE]
This is the data I am working with.
I am trying to get the row to highlight using conditional formatting IF column B contains "F" AND column C starts with "W-2". so in the case above the row I have made bold should get highlighted. I have tried he following to no avail:
=AND($b2="*-F*",$C2="W-2*")
=IF($B2="*-F*", IF($C2="W-2",TRUE,FALSE),FALSE)
I am not sure if it will take the * wildcard in conditional formatting or if I have used too many. Just lost the plot now.
I have tried various other conbinations along the way to no avail and searched the forum. Can anyone help???
[TABLE="width: 380"]
<TBODY>[TR]
[TD]Product type</SPAN>
[/TD]
[TD]Code</SPAN>
[/TD]
[TD]Area</SPAN>
[/TD]
[/TR]
[TR]
[TD]X</SPAN>
[/TD]
[TD]1-A-3-008</SPAN>
[/TD]
[TD]W-1 Back26</SPAN>
[/TD]
[/TR]
[TR]
[TD]Y</SPAN>
[/TD]
[TD]3-B-1-023</SPAN>
[/TD]
[TD]W-1 Back23</SPAN>
[/TD]
[/TR]
[TR]
[TD]X</SPAN>
[/TD]
[TD]9-N-4-369</SPAN>
[/TD]
[TD]W-2 Front2</SPAN>
[/TD]
[/TR]
[TR]
[TD]N</SPAN>
[/TD]
[TD]7-Y-8-028</SPAN>
[/TD]
[TD]W-2 Back69</SPAN>
[/TD]
[/TR]
[TR]
[TD]Y</SPAN>
[/TD]
[TD]6-V-7-058</SPAN>
[/TD]
[TD]W-3 Left 78</SPAN>
[/TD]
[/TR]
[TR]
[TD]Y</SPAN>
[/TD]
[TD]2-S-5-014</SPAN>
[/TD]
[TD]W-1 Front7</SPAN>
[/TD]
[/TR]
[TR]
[TD]X</SPAN>
[/TD]
[TD]4-F-8-963</SPAN>
[/TD]
[TD]W-2 Right 8</SPAN>
[/TD]
[/TR]
[TR]
[TD]N</SPAN>
[/TD]
[TD]8-G-7-214</SPAN>
[/TD]
[TD]W-2 Front2</SPAN>
[/TD]
[/TR]
[TR]
[TD]B</SPAN>
[/TD]
[TD]3-B-1-089</SPAN>
[/TD]
[TD]W-2 Back69</SPAN>
[/TD]
[/TR]
[TR]
[TD]Y</SPAN>
[/TD]
[TD]9-N-4-769</SPAN>
[/TD]
[TD]W-3 Left 78</SPAN>
[/TD]
[/TR]
[TR]
[TD]H</SPAN>
[/TD]
[TD]7-Y-8-022</SPAN>
[/TD]
[TD]W-1 Front7</SPAN>
[/TD]
[/TR]
[TR]
[TD]V</SPAN>
[/TD]
[TD]6-Q-7-058</SPAN>
[/TD]
[TD]W-2 Right 8</SPAN>
[/TD]
[/TR]
[TR]
[TD]N</SPAN>
[/TD]
[TD]5-C-6-589</SPAN>
[/TD]
[TD]W-2 Front2</SPAN>
[/TD]
[/TR]
</TBODY>[/TABLE]
This is the data I am working with.
I am trying to get the row to highlight using conditional formatting IF column B contains "F" AND column C starts with "W-2". so in the case above the row I have made bold should get highlighted. I have tried he following to no avail:
=AND($b2="*-F*",$C2="W-2*")
=IF($B2="*-F*", IF($C2="W-2",TRUE,FALSE),FALSE)
I am not sure if it will take the * wildcard in conditional formatting or if I have used too many. Just lost the plot now.
I have tried various other conbinations along the way to no avail and searched the forum. Can anyone help???