Show a tick mark for a positive test result

J

JPS

I need to know how to show a tick mark in a cell when my formula evaluating
data is correct. I have the formula working with an X and I can manually add
a tick mark to the cell but I need a formula to insert the tick.

Thanks for the Help!
 
M

Max

I have the formula working with an X ..
Amend your formula to return a lower case "b" instead of an "X", then use
Marlett font for the formula cell(s). The "b"'s will appear as tick marks.
--
Max
Singapore
http://savefile.com/projects/236895
Downloads:21,000 Files:370 Subscribers:66
xdemechanik
 
J

JPS

Max,
Works but when I format the range, I am getting other symbols if the value
is not the tick. Is there a way to format the cells to Marlett only when the
resultant value is the tick?

JPS
 
E

Eduardo

Hi,
If you are using excel 2007, go to conditional formating, Icon Sets and
there you have your tick, it will show up only if there is a value , but you
can set up with different conditions
 
J

JPS

I am using 2003... Any suggestion?
--
JPS


Eduardo said:
Hi,
If you are using excel 2007, go to conditional formating, Icon Sets and
there you have your tick, it will show up only if there is a value , but you
can set up with different conditions
 
E

Eduardo

Hi,
not at this point I have 2003 at home, if you don't get an answer before I
will come back to you
 
J

John

Hi JPS
How about Setting the font colour to white in that column and then using
conditional formatting> Cell value is: > select Equal to> and type b in the
next window, press Format and use colour font.
HTH
John
 
G

Gord Dibben

Private Sub Worksheet_Calculate()
Dim Cell As Range
Const WS_RANGE As String = "B:B" 'adjust to suit
On Error GoTo CleanUp
Application.EnableEvents = False
For Each Cell In Me.Range(WS_RANGE).Cells
If Cell.Value = "x" Then
With Cell
.Font.Name = "Marlett"
.Font.Size = 10
.Value = "b"
End With
End If
Next Cell
CleanUp:
Application.EnableEvents = True
End Sub


Gord Dibben MS Excel MVP
 
B

bosco_yip

You can insert a tick mark inside the formula, and ignore the cell format,

something like :

=IF(A1>0,"√","")

Regards
Bosco
 

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

Top