I have looked at conditional formatting and from what I can see it must be open in excel when highlighting specific cells matching a rule across a range.
Is there a way for an excel spreadsheet to have some form of rule that will check the current cell's text value against all other cells within a specific range and highlight all cell's matching the current cell's text value?
I am creating a giant appointment schedule for an event and I want people to be able to click on one of their appointments and the rest of their appointments will be highlighted throughout the schedule. As soon as you click on a different cell holding a different company name all cells with the text value of that company name will be highlighted instead.
Each row represents a company (around 50) and each column will represent an appointment slot (i.e. 9:15-9:30). Each cell will hold the name/code of a buyer who will be meeting the corresponding company at the matching appointment time. As you can imagine this can get very messy and I believe the ability to highlight all appointments for each buyer on an ongoing basis would be useful.
How do I put this together and is it even possible?
Find-ranges to one withUnionfirst, and then do what you described . - CommonSenseRangeto Find to cover the whole appointments cell area, then loop through each match with.FindNextto act on them all. - DaveUnioned from all.Findand.FindNextranges is faster than "act on them all" one by one. Am i wrong? - CommonSense