+ Reply to Thread
Results 1 to 9 of 9

How to apply a tick in excel

Hybrid View

  1. #1
    Registered User
    Join Date
    10-21-2007
    Posts
    3

    How to apply a tick in excel

    Hi just joined and looking for a small piece of help if i could.
    I am using Microsoft Office 2003 and i would like to know when in excel i type 1.00 "£1"it shows 1 please advise how i can change something so it will read 1.00
    Also is it possible to insert a "tick" into a cell.

    Thanks very much for your time in reading this.
    Last edited by ipbr21054; 10-21-2007 at 03:19 PM.

  2. #2
    Forum Expert oldchippy's Avatar
    Join Date
    02-14-2005
    Location
    Worcester, UK
    MS-Off Ver
    Excel 2007 (Home)
    Posts
    7,097
    Quote Originally Posted by ipbr21054
    Hi just joined and looking for a small piece of help if i could.
    I am using Microsoft Office 2003 and i would like to know when in excel i type 1.00 "£1"it shows 1 please advise how i can change something so it will read 1.00
    Also is it possible to insert a "tick" into a cell.

    Thanks very much for your time in reading this.
    Hi ipbr21054,

    Welcome to the forum, click on the cell, right click > Format Cell > Number, then pick Number.

    To put a tick in a cell, one way is to hold Alt+0252, (but use the number keypad on the right) your cell will have a ü in it, format this cell to Wingdings Font and it will change to a tick
    oldchippy
    -------------


    Blessed are those who can give without remembering and take without forgetting

    If you are happy with the help you have received, please click the <--- STAR icon on the left - Thanks.

    Click here >>> Top Excel links for beginners to Experts

    Forum Rules >>>Please don't forget to read these

  3. #3
    Forum Contributor VBA Noob's Avatar
    Join Date
    04-25-2006
    Location
    London, England
    MS-Off Ver
    xl03 & xl 07(Jan 09)
    Posts
    11,988
    Couple of other ways.

    Format cell as Webdings and enter a lowercase a
    Format cell as Wingdings 2 and enter a uppercase P
    Format cell as Marlett and enter a lowercase a

    VBA Noob
    _________________________________________


    Credo Elvem ipsum etian vivere
    _________________________________________
    A message for cross posters

    Please remember to wrap code.

    Forum Rules

    Please add to your signature if you found this link helpful. Excel links !!!

  4. #4
    Forum Contributor VBA Noob's Avatar
    Join Date
    04-25-2006
    Location
    London, England
    MS-Off Ver
    xl03 & xl 07(Jan 09)
    Posts
    11,988
    Or with a event macro. Right click the sheet name e.g sheet1. Select view code and paste in the below. The range is set as A1 to A100 but change as required.

    Now as soon as you select a cell in that range it inserts a tick. to untick just reselect the cell

    Private Sub Worksheet_SelectionChange(ByVal Target As Range)
        If Target.Cells.Count > 1 Then Exit Sub
            If Not Intersect(Target, Range("A1:A100")) Is Nothing Then
                Target.Font.Name = "Marlett"
                    If Target = vbNullString Then
                        Target = "a"
                    Else
                        Target = vbNullString
                    End If
            End If
    End Sub
    VBA Noob

  5. #5
    Registered User
    Join Date
    10-21-2007
    Posts
    3
    picking a number only changes the cell in question,if i need to enter 1.00 6.00 9.00 etc all over the page did not want to do this each time.
    Can something be changed so it will show as typed.
    Thanks

  6. #6
    Forum Expert oldchippy's Avatar
    Join Date
    02-14-2005
    Location
    Worcester, UK
    MS-Off Ver
    Excel 2007 (Home)
    Posts
    7,097
    Try this click in the blank cell, hold Ctrl+a, this selects the whole sheet, right click > Format Cell > Number, then pick Number

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1