How do I insert a pound sign infront of different values in cells

G

Guest

Excel 2003 - Ihave mulitple cells with different values in them and want to
insert a pound sign infrontof each value. I can do this one by one but is
there a quick way to insert a pound sign in multiple cells without a) doing
each cell one at a time and b) without deleting the values in each cell?

Thank
 
R

Roger Govier

Hi

I am guessing that you mean the # symbol for pounds as opposed to £
Sterling.
Mark your range of cells>Format>Number>Custom> "#" #0.00
or whatever you want to show in terms of decimal places.

As opposed to typing the symbol in the cell along with the figure,
although the number appears as # 2.00 you can still perform math upon
all of the values if required.

If you mean £ Sterling, then there is an option to
Format>Cells>Currency> use drop down to select £ symbol
 
G

Guest

Select the cells in question and format them as currency choosing Sub
SingleCust()
custid = InputBox("Enter a Customer ID!")
On Error GoTo NoCust
Columns("A").Find(What:=custid, _
After:=Range("A1"), _
LookAt:=xlWhole, _
LookIn:=xlValues, _
SearchOrder:=xlByRows, _
SearchDirection:=xlNext, _
MatchCase:=False).Activate
firstrow = ActiveCell.Row
' If firstrow > 0 Then
lastrow = Columns("A").Find(What:="*", _
After:=ActiveCell, _
LookAt:=xlPart, _
LookIn:=xlValues, _
SearchOrder:=xlByRows, _
SearchDirection:=xlNext, _
MatchCase:=False).Row - 1
If lastrow < firstrow Then
lastrow = Columns("B").Find(What:="*", _
After:=Range("B1"), _
LookAt:=xlPart, _
LookIn:=xlValues, _
SearchOrder:=xlByRows, _
SearchDirection:=xlPrevious, _
MatchCase:=False).Row
End If
If firstrow > 2 Then
Range("A2:A" & firstrow - 1).EntireRow.Hidden = True
End If
Range("A" & lastrow + 1 & ":A65536").EntireRow.Hidden = True
Exit Sub
NoCust:
MsgBox custid & " does not exist!"
End Sub


„tintintravels†ezt írta:
 
G

Guest

Select the cells in question and format them as currency choosing the pound
symbol from the currency list!

Regards,
Stefi


„tintintravels†ezt írta:
 
G

Guest

Hi,

Select the cells. Go to Format - Cells. Select the Number Tab - Currency.
Click the dropdown arrow key under Symbol and click on £ English (United
Kingdom).
OK.

Regards,

Jaleel
 

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