Im using a simple identification sequence to apply ID numbers to rows.
The code looks like this:
So my problem is I have a few cells with strings that have alt returns in them.
For example: The string in cell B20 is -
(There is an alt return after the word 'time')
If my x line is:
The code does not recognize the line.
Ive had success with this code in the past, but the alt return in the cell is breaking it. Any help would be appreciated.
The code looks like this:
Code:
For each x in Range (B5:B200)
If x ="Text in the Cell" the x Offset(0, -1) Value = "ID #1"
(repeat until all ID's are cylcled)
Next
For example: The string in cell B20 is -
Code:
1. Antibiotics within a hour cut time
(overall rate)
If my x line is:
Code:
If x ="1. Antibiotics within an hour cut time (overall rate)" ...
Ive had success with this code in the past, but the alt return in the cell is breaking it. Any help would be appreciated.