Hi Guys,
Is it possible to conditional format a row, or even use VBA or something to match a condition and conditional format a certain cell.
For example:
Product Name Stock
19 Inch Monitor 66
24 Inch Monitor 59
Microsoft Front Page 100
The above shows a list of what is in stock, but for something like Microsoft Front Page, I dont want this visable, so would like to change the font to white (although we have stock of it in, its not a physical item - so I dont need to show quantity, but have just the name output)
Now I can conditional format the cell that features "Microsoft Front Page" but i need the cell that states "100" to be formatted
Something like:
Is this anyway possible?
Is it possible to conditional format a row, or even use VBA or something to match a condition and conditional format a certain cell.
For example:
Product Name Stock
19 Inch Monitor 66
24 Inch Monitor 59
Microsoft Front Page 100
The above shows a list of what is in stock, but for something like Microsoft Front Page, I dont want this visable, so would like to change the font to white (although we have stock of it in, its not a physical item - so I dont need to show quantity, but have just the name output)
Now I can conditional format the cell that features "Microsoft Front Page" but i need the cell that states "100" to be formatted
Something like:
Code:
IF ME![ProductName] = "Microsoft Front Page" THEN
ME![CountOfProductID] = Font Colour White
End If
Is this anyway possible?