Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Can you change fonts within the formula's of a cell. If so how???
|
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Cannot be done.
Copy and Paste as value then you can change the font. Gord Dibben MS Excel MVP On Thu, 12 Jul 2007 11:38:04 -0700, cody wrote: Can you change fonts within the formula's of a cell. If so how??? |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
no
you can change fonts in a text only cell but not with a formula "cody" wrote: Can you change fonts within the formula's of a cell. If so how??? |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Hi,
No. You can change format of a cell for display purpose. Formulas are stored values, therefore assingning any font color to the formulas does not make sense. Note: You cannot change fonts for Named formula. Challa Prabhu "cody" wrote: Can you change fonts within the formula's of a cell. If so how??? |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Depending on exactly what you are trying to do, this may be something you
might be interested in playing with...... Private Sub Worksheet_SelectionChange(ByVal Target As Excel.Range) 'Cell font type, size, and color depends on cell value 'Also works on formula results If IsNumeric(Selection.Value) And Selection.Value < "" Then Select Case Selection.Value Case 0 To 9 Selection.Font.Name = "script" Selection.Font.ColorIndex = 3 Selection.Font.Size = 10 Case 10 To 20 Selection.Font.Name = "ariel" Selection.Font.ColorIndex = 5 Selection.Font.Size = 12 Case Is 20 Selection.Font.Name = "times new roman" Selection.Font.ColorIndex = 8 Selection.Font.Size = 14 Case Else GoTo 100 End Select 100 End If End Sub hth Vaya con Dios, Chuck, CABGx3 "cody" wrote: Can you change fonts within the formula's of a cell. If so how??? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
how to edit formula without changing formula of each cell | Excel Worksheet Functions | |||
how can I edit/change the font color in an excel formula? | Excel Discussion (Misc queries) | |||
Display shading and font colors in edit mode | Excel Discussion (Misc queries) | |||
i edit a formula (excel) then it displays formula not answer | Excel Discussion (Misc queries) | |||
= (edit formula) | Excel Discussion (Misc queries) |