DavyJones90
Board Regular
- Joined
- Feb 23, 2022
- Messages
- 62
- Office Version
- 365
- Platform
- Windows
Hey guys and thanks in advance, this is my code
The first part works perfectly, It basically take a value off a different sheet, compares that another value exists and if it does offsets the dictionary value in a certain field.
The second part does nothing. basically, the values are arrows, which I cannot display in VBA, so I wanted to use the hex code (I also tried the same with &H).
Any idea what I am dooing wrong?
VBA Code:
For Each Cl In .Range("F6", .Range("F" & Rows.Count).End(xlUp))
If Dic.exists(Cl.Value) Then Cl.Offset(25, 4).Value = Dic(Cl.Value)
If Cl.Value = ChrW(2197) Then Cl.Offset(26, 0).Value = "RANGE-Reverse All Arrows to " + ChrW(2191)
Next Cl
The first part works perfectly, It basically take a value off a different sheet, compares that another value exists and if it does offsets the dictionary value in a certain field.
The second part does nothing. basically, the values are arrows, which I cannot display in VBA, so I wanted to use the hex code (I also tried the same with &H).
Any idea what I am dooing wrong?