Hi @JH
Thank you for contacting the Microsoft Q&A forum.
As I understand, you need to compare two sheets and highlight unique values. Here are the steps I have tested, and they worked for me:
For the Excel app:
Drive Sheet:
- Select the range in column C that you want to check. (e.g., C1:C100)
- Go to Home > Conditional Formatting > New Rule.
- Choose Use a formula to determine which cells to format.
- Enter the formula: =ISNA(MATCH(C1, daily!A:A, 0)).
- Click Format, choose the Fill tab, and select Yellow.
- Click OK to apply the formatting.
Daily Sheet:
- Select the range in column A that you want to check. (e.g., A1:A100)
- Go to Home > Conditional Formatting > New Rule.
- Choose Use a formula to determine which cells to format.
- Enter the formula: =ISNA(MATCH(A1, Drive!C:C, 0)).
- Click Format, choose the Fill tab, and select Green.
- Click OK to apply the formatting.
For Excel Web:
Drive Sheet:
- Select the range in column C that you want to check. (e.g., C1:C100)
- Go to Home > Conditional Formatting > New Rule.
- Choose Format cells where a formula is true.
- Enter the formula: =ISNA(MATCH(C1, daily!A:A, 0)).
- Click Format Style, choose the plus sign > Fill color and select Yellow.
- Click Done.
Daily Sheet:
- Select the range in column A that you want to check. (e.g., A1:A100)
- Go to Home > Conditional Formatting > New Rule.
- Choose Format cells where a formula is true.
- Enter the formula: =ISNA(MATCH(A1, Drive!C:C, 0)).
- Click Format Style, choose the plus sign > Fill color and select Green.
- Click Done.
I hope this helps.
If you need further assistance, please let us know.
If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.