View Single Post
  #6   Report Post  
Posted to microsoft.public.excel.programming
Shazi Shazi is offline
external usenet poster
 
Posts: 74
Default Font size and color change for selected cell only

On Jul 9, 7:00*am, "Don Guillett" wrote:
You may want to add
on error resume next
as the FIRST line WITHIN the macro

--
Don Guillett
Microsoft MVP Excel
SalesAid Software
"Don Guillett" wrote in message

...



Try this instead, including the line public lastcell
'==============
Public lastcell
Private Sub Worksheet_SelectionChange(ByVal Target As Range)


With Range(lastcell)
.Interior.ColorIndex = xlNone
.Font.Size = 10
End With


With Target
.Font.Size = 18
.Interior.ColorIndex = 8
End With


lastcell = Target.Address
End Sub


'==========
--
Don Guillett
Microsoft MVP Excel
SalesAid Software

"Shazi" wrote in message
....


I have the following procedure to view the selected cell bigger size,
when I move my cursor I need Font to be changed from 10 size to 18
size.
I made the below procedure.


Private Sub Worksheet_SelectionChange(ByVal Target As Range)
Application.ScreenUpdating = False


Cells.Interior.ColorIndex = xlNone
Target.Interior.ColorIndex = 8


With Selection.Font
* * * *.Name = "Arial"
* * * *.Size = 18
* * * *.Strikethrough = False
* * * *.Superscript = False
* * * *.Subscript = False
* * * *.OutlineFont = False
* * * *.Shadow = False
* * * *.Underline = xlUnderlineStyleNone
* * * *.ColorIndex = xlAutomatic
* *End With


Application.ScreenUpdating = True


End Sub


The problem is this when I move the curssor it Increase the size of
Font from 10 to 18, and It should be 10 size when I move to next
cell...


I hope you understand what I mean.


Pls send me reply, how it will be possible.


Regards.


Shahzad Zafar
Madinah- Hide quoted text -


- Show quoted text -


Dear All,

Thank you very much for your support, you solved my big problem which
I was facing on daily routine. Now I am able to view any thing larger
when I click on any cell.

Once again thank you for all,


with best personal regards.

Syed Shahzad Zafar
Madinah