Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 5
Default Is there a font that shows a Y as a tick and an N as a cross?


  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 97
Default Is there a font that shows a Y as a tick and an N as a cross?

Hi Julie,

No ...

For the tick symbol, type in your cell ü and use Wingdings font ...

HTH
  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 22,906
Default Is there a font that shows a Y as a tick and an N as a cross?

You could use event code to return a tick or a cross depending on a Y or N typed
into a cell.


Gord Dibben MS Excel MVP

On Sun, 27 Jan 2008 02:22:00 -0800, julie cooke
wrote:


  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 3,572
Default Is there a font that shows a Y as a tick and an N as a cross?

You could use (insert) another column alongside the input column, and have
that "helper" column display those characters.

Say the Y and N is entered in Column G.
Format Column H to "WingDings 2",
Then enter this formula in H1:

=IF(G1="N",CHAR(200),IF(G1="Y",CHAR(80),""))

And copy down as needed.
--
HTH,

RD

---------------------------------------------------------------------------
Please keep all correspondence within the NewsGroup, so all may benefit !
---------------------------------------------------------------------------



"julie cooke" wrote in message
...


  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 5
Default Is there a font that shows a Y as a tick and an N as a cross?

Unfortunately none of the suggestions are suitable for my needs - although I
would welcome other responses.

Users are inputting 'Y's or 'n's into cells as previously instructed,
however our director would prefer to see ticks!

These entries are then counted to enable the sheet to show the % that are
yes for each column.

We cannot add any other columns as both the inputters and users of the
report need to be able to see the same columns.

I can format an 'a' as a tick under Marlett font and there are various other
ways of displaying ticks and crosses - from symbols to other fonts (ie
Monotype sorts) although many of these require a complex - ie not single
input - character.

Additionally all users will need to see a tick or y/n displayed.

My question is probably more aimed at Microsoft - could 'they' (or some
other technical bod) create a font which shows single entries as specific
symbols (but within the cell, so counta/countif still works. ie Y= a tick,
N= a cross $= a Euro symobol, etc. Obviously this font would then need to be
available to all users (although this could be via a 'patch' or update pack
from Microsoft.



"Ragdyer" wrote:

You could use (insert) another column alongside the input column, and have
that "helper" column display those characters.

Say the Y and N is entered in Column G.
Format Column H to "WingDings 2",
Then enter this formula in H1:

=IF(G1="N",CHAR(200),IF(G1="Y",CHAR(80),""))

And copy down as needed.
--
HTH,

RD

---------------------------------------------------------------------------
Please keep all correspondence within the NewsGroup, so all may benefit !
---------------------------------------------------------------------------



"julie cooke" wrote in message
...





  #6   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 22,906
Default Is there a font that shows a Y as a tick and an N as a cross?

Option Compare Text
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Cells.Count 1 Then Exit Sub
If Intersect(Target, Me.Range("D:D")) Is Nothing Then Exit Sub
On Error GoTo CleanUp
Application.EnableEvents = False
If Target.Value = "Y" Then
With Target
.Font.Name = "Marlett"
.Font.Size = 12
.Value = "a"
End With
End If
If Target.Value = "N" Then
With Target
.Font.Name = "Arial"
.Font.Size = 12
.Value = "X"
End With
End If
CleanUp:
Application.EnableEvents = True
End Sub


=COUNTIF(D1:D20,"X")

=COUNTIF(D1:D20,"a")


Gord Dibben MS Excel MVP

On Tue, 29 Jan 2008 08:09:11 -0800, julie cooke
wrote:

Unfortunately none of the suggestions are suitable for my needs - although I
would welcome other responses.

Users are inputting 'Y's or 'n's into cells as previously instructed,
however our director would prefer to see ticks!

These entries are then counted to enable the sheet to show the % that are
yes for each column.

We cannot add any other columns as both the inputters and users of the
report need to be able to see the same columns.

I can format an 'a' as a tick under Marlett font and there are various other
ways of displaying ticks and crosses - from symbols to other fonts (ie
Monotype sorts) although many of these require a complex - ie not single
input - character.

Additionally all users will need to see a tick or y/n displayed.

My question is probably more aimed at Microsoft - could 'they' (or some
other technical bod) create a font which shows single entries as specific
symbols (but within the cell, so counta/countif still works. ie Y= a tick,
N= a cross $= a Euro symobol, etc. Obviously this font would then need to be
available to all users (although this could be via a 'patch' or update pack
from Microsoft.



"Ragdyer" wrote:

You could use (insert) another column alongside the input column, and have
that "helper" column display those characters.

Say the Y and N is entered in Column G.
Format Column H to "WingDings 2",
Then enter this formula in H1:

=IF(G1="N",CHAR(200),IF(G1="Y",CHAR(80),""))

And copy down as needed.
--
HTH,

RD

---------------------------------------------------------------------------
Please keep all correspondence within the NewsGroup, so all may benefit !
---------------------------------------------------------------------------



"julie cooke" wrote in message
...




Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Tick mark and cross marks in Cell claude jerry Excel Discussion (Misc queries) 2 August 28th 07 02:52 PM
Possible to: Tick or cross off dates as they go by? Ben Excel Discussion (Misc queries) 8 August 6th 07 08:19 AM
Changed default font, previous font still shows when editing Font/Editing Problem Excel Discussion (Misc queries) 0 May 18th 06 04:37 PM
Checkbox to be marked with a cross rather than a tick Den New Users to Excel 1 February 22nd 06 10:04 AM
cannot find cross and tick box just below the toolbars SA UK Setting up and Configuration of Excel 2 September 8th 05 09:50 AM


All times are GMT +1. The time now is 06:38 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"