Compare names from different months

philb99

Active Member
Joined
Feb 3, 2014
Messages
385
Office Version
  1. 2010
Platform
  1. Windows
I am trying to compare Names + Course from 2 different months and having issues with Conditional Formatting

Can someone advise me how to do this please. Looking to show which Names and Course are reported in Month 2 as well as Month 1 for the same Name and Course

Thanks
 

Excel Facts

Format cells as date
Select range and press Ctrl+Shift+3 to format cells as date. (Shift 3 is the # sign which sort of looks like a small calendar).
I am trying to compare Names + Course from 2 different months and having issues with Conditional Formatting

Can someone advise me how to do this please. Looking to show which Names and Course are reported in Month 2 as well as Month 1 for the same Name and Course

Thanks

You can create a concatenate field next to you table, and then use conditional formatting for duplicate values (as long as their won't be a duplicate in the same month)



<tbody></tbody>

Excel 2010
LMNOPQR
1Table 1Table2
3NameCourseNameCourse
4JimEnglishJimEnglishJimEnglishJimEnglish
5JohnScienceJohnScienceMarkScienceMarkScience
6MarkScienceMarkScienceJohnMathJohnMath
Sheet5
Cell Formulas
RangeFormula
N4=L4&M4
R4=P4&Q4
 
Last edited:
Upvote 0
Alternatively you could try something like this:


Excel 2010
LMNOPQ
1Table 1Table2
3NameCourseNameCourse
4JimEnglishJimEnglish
5JohnScienceMarkScience
6MarkScienceJohnMath
7
8
9
10
11
12
13
14
15
16JimEnglish
17  
18MarkScience
19  
20  
21  
22  
Sheet5
Cell Formulas
RangeFormula
N16=IF(SUMPRODUCT(($L4=$P$4:$P$6)*($M4=$Q$4:$Q$6)),L4, "")
N17=IF(SUMPRODUCT(($L5=$P$4:$P$6)*($M5=$Q$4:$Q$6)),L5, "")
N18=IF(SUMPRODUCT(($L6=$P$4:$P$6)*($M6=$Q$4:$Q$6)),L6, "")
N19=IF(SUMPRODUCT(($L7=$P$4:$P$6)*($M7=$Q$4:$Q$6)),L7, "")
N20=IF(SUMPRODUCT(($L8=$P$4:$P$6)*($M8=$Q$4:$Q$6)),L8, "")
N21=IF(SUMPRODUCT(($L9=$P$4:$P$6)*($M9=$Q$4:$Q$6)),L9, "")
N22=IF(SUMPRODUCT(($L10=$P$4:$P$6)*($M10=$Q$4:$Q$6)),L10, "")
O16=IF(SUMPRODUCT(($L4=$P$4:$P$6)*($M4=$Q$4:$Q$6)),M4, "")
O17=IF(SUMPRODUCT(($L5=$P$4:$P$6)*($M5=$Q$4:$Q$6)),M5, "")
O18=IF(SUMPRODUCT(($L6=$P$4:$P$6)*($M6=$Q$4:$Q$6)),M6, "")
O19=IF(SUMPRODUCT(($L7=$P$4:$P$6)*($M7=$Q$4:$Q$6)),M7, "")
O20=IF(SUMPRODUCT(($L8=$P$4:$P$6)*($M8=$Q$4:$Q$6)),M8, "")
O21=IF(SUMPRODUCT(($L9=$P$4:$P$6)*($M9=$Q$4:$Q$6)),M9, "")
O22=IF(SUMPRODUCT(($L10=$P$4:$P$6)*($M10=$Q$4:$Q$6)),M10, "")
 
Last edited:
Upvote 0

Forum statistics

Threads
1,214,932
Messages
6,122,332
Members
449,077
Latest member
jmsotelo

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top