Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 11
Default Macro or code to insert Shape (Say Smiley face) in XL?

Want to insert smiley face shape when long macro is complete. Apparently XL
2007 won't allow one to record this. Help appreciated, but I am a novice with
VBA nothing too complicated please. Thanks
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 7,247
Default Macro or code to insert Shape (Say Smiley face) in XL?

A simple way is to use the character "J" in the WingDings font. Below,
change

Set R = Range("C3")
to set R to the desired cell.


Sub AAA()
Dim R As Range
Dim S As String
Dim N As Long

Set R = Range("C3") '<<<<<<<<< CHANGE AS NEEDED
If R.HasFormula = True Then
Exit Sub
End If
If R.Cells.Count 1 Then
Exit Sub
End If
S = R.Text
N = Len(R.Value)
If StrComp(R.Characters(N, 1).Font.Name, "WingDings", vbTextCompare) = 0
Then
If Asc(Right(S, 1)) = 74 Then
' already have a smiiley
Exit Sub
End If
End If
S = S & " " & Chr(74)
R.Value = S
R.Characters(N + 2, 1).Font.Name = "WingDings"
End Sub


--
Cordially,
Chip Pearson
Microsoft Most Valuable Professional
Excel Product Group
Pearson Software Consulting, LLC
www.cpearson.com
(email on web site)


"Giles" wrote in message
...
Want to insert smiley face shape when long macro is complete. Apparently
XL
2007 won't allow one to record this. Help appreciated, but I am a novice
with
VBA nothing too complicated please. Thanks


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
insert a shape into spreadsheet Jane Griffel[_2_] Excel Discussion (Misc queries) 2 August 20th 09 09:14 PM
insert a shape in Excel Jane Griffel[_2_] Excel Discussion (Misc queries) 0 August 20th 09 02:37 AM
Remove/Re-assign Smiley Face Macro? telewats Excel Discussion (Misc queries) 1 January 26th 06 06:07 PM
Insert a line or shape in a table Parkrose Charts and Charting in Excel 1 November 5th 05 03:37 AM
how can i get a picture of a smiley face loser! Setting up and Configuration of Excel 1 May 27th 05 02:55 AM


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

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

About Us

"It's about Microsoft Excel"