Mar 04 2023 06:23 PM
I have two cells containing data; one cell has text (A, B, C, etc) and one cell has numbers (1, 2, 3, etc). A third cell has a formula which accesses the first two cells ( =C3&" "&D3 ). For example if one cell has "1" and the second cell has "A" the result in the third cell would be "1A".
How can I get the third cell to change color based on the result of the formula? I need the result "1A" to be a different color than if the result was "2A", "3B", "5D" and so on. I've tried using Conditional Formatting (Format only cells that contain...specific text) but it does not seem to work for me, probably because it is only reading the formula not the result.
Any ideas from the impressive brain trust here?
Mar 04 2023 07:12 PM
Mar 04 2023 08:45 PM
Thanks for the response Harun. Great idea to provide the spreadsheet. Can you explain how to attach a file to a discussion?
Mar 05 2023 01:40 AM
Mar 05 2023 02:42 AM
Mar 05 2023 12:03 PM
Thanks for all the comments folks. I figured out what the issue was. The formula being used in the third cell was =C3&" "&D3
It should have been =C3&""&D3 (no space between the quotation marks).
Mar 05 2023 01:07 PM - edited Mar 05 2023 01:08 PM
In that case, you might as well use =C3&D3