Conditional value code

  • Thread starter Thread starter Todd Huttenstine
  • Start date Start date
T

Todd Huttenstine

I have Range O2:O100 and P2:P100. The below code
looks in Range P2:P100 and if it finds a % in the value,
will offset into the corresponding cell in Range O2:O100
and will put the % character in the cell itself.

What I would also like is if the code does not find a % in
the value, will offset into the corresponding cell in
Range O2:O100 and will put the value "number" in the cell
itself.


Dim c As Range
Range("O2:O100").Value = ""
For Each c In Range("O2:O100")
With c
If InStr(1, .Offset(, 1).NumberFormat, "%")
Then .Value = "%"
End With
Next c
 
One way:

Dim c As Range
For Each c In Range("O2:O100").Cells
With c
If InStr(1, .Offset(, 1).NumberFormat, "%") Then
.Value = "%"
Else
.Value = "number"
End If
End With
Next c

Note that since you're putting either "%" or "number" in each cell,
the Range("O2:O100").Value = "" line isn't necessary.
 
thanx
-----Original Message-----
One way:

Dim c As Range
For Each c In Range("O2:O100").Cells
With c
If InStr(1, .Offset(, 1).NumberFormat, "%") Then
.Value = "%"
Else
.Value = "number"
End If
End With
Next c

Note that since you're putting either "%" or "number" in each cell,
the Range("O2:O100").Value = "" line isn't necessary.



.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

Code Edit 1
Code 2
3 VBA Conditions(last edit) 2
Conditional Data formats 3
Format 4
Loop Problem 10
I'm getting unwanted rounding to integer for an average of range of cells. 2
Nested Ifs VBA, How to 1

Back
Top