-
Hi Bob,
I implemented this, thought it would do the trick. But still hitting a brick wall.
I have had to change my numberformat for the cells to Fraction - "??/??" to accommodate a few values like 9/10, 11/12.
Due to this format style when I use the line of code
[VBA]If Cells(i, "k").Text Like "*?/?" Then[/VBA]
It does not find any of the fractional values of single values fractions like 1/8 because it is formatted as "??/??"
Any other suggestions?
I am telling you, the 80/20 rule is pushing my buttons right now....
[VBA]
Sub testk()
Dim i As Integer
Dim lrow As Long
Dim ws As Worksheet
Set ws = ActiveSheet
lrow = Cells(Rows.Count, "A").End(xlUp).Row
For i = 1 To 20
If Cells(i, "k").Text Like "*?/?" Then
Cells(i, "k").NumberFormat = "General"
'Cells(i, "k").Interior.Color = vbYellow
End If
Next i
End Sub
[/VBA]
my site: www.ecboardco.com
was built w/ a majority of the assistance from the board members here... thanks VBAX.
Just because I see something, doesn't mean that what's actually happening is what I see.
You don't get from 0-90 by standing still!
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules