View Single Post
  #2   Report Post  
Bob Phillips
 
Posts: n/a
Default

Conditional formatting won't affect the numberformat so you need code

Private Sub Worksheet_Change(ByVal Target As Range)
Const WS_RANGE As String = "H1:H10"

On Error GoTo ws_exit:
Application.EnableEvents = False
If Not Intersect(Target, Me.Range(WS_RANGE)) Is Nothing Then
With Target
If .Value < 1 Then
.NumberFormat = "0%"
Else
.NumberFormat = "General"
End If
End With
End If

ws_exit:
Application.EnableEvents = True
End Sub

'This is worksheet event code, which means that it needs to be
'placed in the appropriate worksheet code module, not a standard
'code module. To do this, right-click on the sheet tab, select
'the View Code option from the menu, and paste the code in.

--

HTH

RP
(remove nothere from the email address if mailing direct)


"Husker87" wrote in message
...
OK... here's the question. I have a cell that I input a number into. If

I
input a number less than 1, I want the cell to be formated with a

percentage
sign. If I input a number greater than 1, I want it to show just as a

number
(with no percentage sign).

I would prefer the answer NOT include a macro as this worksheet will be

used
on older computers that have a hard time running macros. If it can't be

done
without a macro then a macro will be OK. Any thoughts? and thanks very
much....