View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.misc
eggpap eggpap is offline
external usenet poster
 
Posts: 29
Default function formatting a cell

Thanks, any advice to get it?
I used the UDF since I've to manage complex conditions.

Emiliano

"Gary''s Student" ha scritto nel
messaggio ...
A UDF cannot directly change the format of a cell.
--
Gary''s Student - gsnu2007a


"papero" wrote:

Suppose I have a value in A1 and the formula
=FormatCell(A1), calling the following macro, in B1

Function FormatCell(a As Range)
a.Cells(1, 1).Select
Selection.Font.Bold = True
Selection.Font.ColorIndex = 3
End Function

Why I hav'nt A1 formatted?
I have breakpointed the macro and it triggers when I change the A1
value.

Bye, Emiliano