COMPARING 7 COLUMN
Closed
parshv
Posts
1
Registration date
Saturday June 8, 2019
Status
Member
Last seen
June 8, 2019
-
Jun 8, 2019 at 05:56 AM
TrowaD Posts 2921 Registration date Sunday September 12, 2010 Status Moderator Last seen December 27, 2022 - Jun 13, 2019 at 12:09 PM
TrowaD Posts 2921 Registration date Sunday September 12, 2010 Status Moderator Last seen December 27, 2022 - Jun 13, 2019 at 12:09 PM
Related:
- COMPARING 7 COLUMN
- Kmspico windows 7 - Download - Other
- Minecraft java edition free download for pc windows 7 - Download - Sandbox
- Bandlab download for pc windows 7 - Download - Musical production
- Scratch 3 download for windows 7 - Download - Programming languages
- Microsoft store download windows 7 - Download - App downloads
1 response
TrowaD
Posts
2921
Registration date
Sunday September 12, 2010
Status
Moderator
Last seen
December 27, 2022
555
Jun 13, 2019 at 12:09 PM
Jun 13, 2019 at 12:09 PM
Hi Parshv,
Please refrain yourself from using all capitals and demanding help.
Here is a code that could help you out:
Best regards,
Trowa
Please refrain yourself from using all capitals and demanding help.
Here is a code that could help you out:
Sub RunMe() Dim mFind As Range For Each cell In Columns("A:A").SpecialCells(xlCellTypeConstants) Set mFind = Columns("B:B").Find(cell.Value) If mFind Is Nothing Then GoTo nCell Set mFind = Columns("C:C").Find(cell.Value) If mFind Is Nothing Then GoTo nCell Set mFind = Columns("D:D").Find(cell.Value) If mFind Is Nothing Then GoTo nCell Set mFind = Columns("E:E").Find(cell.Value) If mFind Is Nothing Then GoTo nCell Set mFind = Columns("F:F").Find(cell.Value) If mFind Is Nothing Then GoTo nCell Set mFind = Columns("G:G").Find(cell.Value) If mFind Is Nothing Then GoTo nCell Range("I" & Rows.Count).End(xlUp).Offset(1, 0) = cell.Value nCell: Next cell End Sub
Best regards,
Trowa