EXCEL 2007
Closed
p040775
-
28 Jul 2010 à 13:15
rizvisa1 Posts 4478 Registration date Thursday 28 January 2010 Status Contributor Last seen 5 May 2022 - 30 Jul 2010 à 16:49
rizvisa1 Posts 4478 Registration date Thursday 28 January 2010 Status Contributor Last seen 5 May 2022 - 30 Jul 2010 à 16:49
Related:
- Excel spellnumber in rupees
- Excel mod apk for pc - Download - Spreadsheets
- Arrow keys not working in excel - Guide
- Vat calculation excel - Guide
- Kernel for excel repair - Download - Backup and recovery
- How to clear formatting in excel - Guide
4 responses
rizvisa1
Posts
4478
Registration date
Thursday 28 January 2010
Status
Contributor
Last seen
5 May 2022
766
28 Jul 2010 à 17:55
28 Jul 2010 à 17:55
did you see VLOOKUP
Both sheets have same data however, one file is larger than the other as they are for different days. What I am trying to do is look at the data in the bigger sheet and identify the data from sheet 1 (smaller sheet) that is duplicated in sheet 2. This is an example of the file data I am using. HELP!
00757 McKe, Nadine (ASC/WAH)
16098 Frann, Khat (WCMP)
16101 Fernz, Rama (WAH)
16105 Drumm, Phls
16136 Brou, Lara
16178 Woe, Katr (ASC)
16342 Carpe, Mari (WCMP)
00757 McKe, Nadine (ASC/WAH)
16098 Frann, Khat (WCMP)
16101 Fernz, Rama (WAH)
16105 Drumm, Phls
16136 Brou, Lara
16178 Woe, Katr (ASC)
16342 Carpe, Mari (WCMP)
rizvisa1
Posts
4478
Registration date
Thursday 28 January 2010
Status
Contributor
Last seen
5 May 2022
766
30 Jul 2010 à 07:37
30 Jul 2010 à 07:37
Could you please upload a sample EXCEL file WITH sample data, macro, formula , conditional formatting etc on some shared site like https://authentification.site , http://docs.google.com, http://wikisend.com/ , http://www.editgrid.com etc and post back here the link to allow better understanding of how it is now and how you foresee. Based on the sample book, could you re-explain your problem too
I have posted the two sample files to. What I would like to do is run a comparison on the 8/30 file to find all duplicates that are in the 7/5 file and to highlight those that are duplicate in both files. I have posted the two files to :
https://authentification.site/files/23594967/agentcheckin_070510_test.xls
https://authentification.site/files/23594968/agentcheckin_083010_test.xls
https://authentification.site/files/23594967/agentcheckin_070510_test.xls
https://authentification.site/files/23594968/agentcheckin_083010_test.xls
Both files have been uploaded : https://authentification.site/files/23594968/agentcheckin_083010_test.xls and https://authentification.site/files/23594967/agentcheckin_070510_test.xls What I would like to do is find all duplicated in 8/30 file that are in 7/5 file and highlight the duplicates on the 8/30 file
rizvisa1
Posts
4478
Registration date
Thursday 28 January 2010
Status
Contributor
Last seen
5 May 2022
766
30 Jul 2010 à 16:49
30 Jul 2010 à 16:49
Highlighting directly is not possible. What you can do is locate what are also in your other book. Once you have that you can highlight the cell/row
you can add to an available column this
=IF(ISERROR(MATCH(A12,'C:\Users\shamikh\Downloads\[agentcheckin 070510 test.xls]Sheet1'!$A:$A,0)), 0,1)
This will show a 1 if the value in cell A12 is also in the other book (070510). It will show a 0, if it is not
you can add to an available column this
=IF(ISERROR(MATCH(A12,'C:\Users\shamikh\Downloads\[agentcheckin 070510 test.xls]Sheet1'!$A:$A,0)), 0,1)
This will show a 1 if the value in cell A12 is also in the other book (070510). It will show a 0, if it is not
29 Jul 2010 à 09:54