Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Please help... I have been stuck on this problem for several days
now... I am trying to loop through a specific column in a sheet, and then building a column with all unique hits, using VBA. When I do this with numbers, everything works perfectly (all the rows in the original sheet consist of a number, delimited by a dot and another two numbers). Now, when I treat the original sheet as text (which is the right format), I cant get the same code to work. I suspect it has something to do with the cells(x,x).VALUE commands, which then converts the text to numbers or something? I have posted the code below, all help very much appreciated! Best regards, -NorTor Sub Unique_PGrp() Sheets("Arkiv").Range("A2").Value = _ Sheets("Analyse").Range("D3").Value PGrpCount = 1 actRow = 4 Sheets("Analyse").Select Range("D3").Select Do Until IsEmpty(ActiveCell.Value) newVal = 0 Sheets("Arkiv").Select Range("A2").Select intPGrp = Sheets("Analyse").Cells(actRow, 4).Value If intPGrp < "" Then For i = 0 To PGrpCount If intPGrp = ActiveCell.Value Then newVal = 1 End If ActiveCell.Offset(1, 0).Select Next i Range("A" & (1 + PGrpCount)).Select If newVal = 0 Then ActiveCell.Offset(1, 0).Select ActiveCell.Value = intPGrp PGrpCount = PGrpCount + 1 End If End If Sheets("Analyse").Select actRow = actRow + 1 Range("D" & actRow).Select ActiveCell.Offset(1, 0).Select Loop End Sub |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Comparing two columns of text values | Excel Discussion (Misc queries) | |||
comparing text values in two columns | Excel Discussion (Misc queries) | |||
Help with Comparing values and retrieving values in Excel!!!!!! | Excel Worksheet Functions | |||
Comparing values between columns only when there are values in bot | Excel Worksheet Functions | |||
Comparing text and returning boolean values | Excel Discussion (Misc queries) |