2

The goal is to find values in an Excel spreadsheet which match values in a separate list, then highlight the row with a fill color (red) where matches are found. In other words:

  • Excel file A: source list (approximately 200 items)
  • Excel file B: has one column containing the list we are checking; must apply fill color (red) to entire row where matches are found

Wondering what the best approach might be. I'm currently using AppleScript to highlight and sort data in a large volume of spreadsheets; a looped find checks each cell in a range for a single string of text and colors all matching rows. While this task is similar, the source list contains hundreds of items so it feels silly (and very slow) to include all this data in the actual script. Any suggestions would be greatly appreciated.

4

1 回答 1

0

我不知道您的原始列表采用什么格式,但这听起来像是条件格式的工作,如果您可以将列表导入 Excel。您可以根据公式进行条件格式设置,并且可以使用 VLOOKUP() 公式来执行此操作。

于 2013-11-15T22:29:16.393 回答