I suppose but not if it requires a lot of time on your part. It's
probably not that necessary. Thanks for the help up to this point.
>That would require a VBA Event Macro. Is that something you're
>interested in?
>
>> Also, does anyone know of a way to format the mean in the new cell as
>> black and the sd as red?
It doesn't take much time, but sometimes OPs can't use a macro solution.
Put this in the worksheet code module (right-click on the worksheet tab
and choose View Code):
Private Sub Worksheet_SelectionChange(ByVal Target As Excel.Range)
Application.EnableEvents = False
With Range("A4")
.Value = Format(Range("A2").Value, "0.00") & " / " & _
Format(Range("A3").Value, "0.00")
.Characters(8).Font.Color = RGB(255, 0, 0)
End With
End Sub
> I suppose but not if it requires a lot of time on your part. It's
> probably not that necessary. Thanks for the help up to this point.
rbanks - 26 Apr 2004 22:39 GMT
Try this:
=CONCATENATE(TEXT(A2,"00.00")," / ",TEXT(A3,"00.00"))
This essentially converts both the SD and the mean to text with
decimal places within the formula.
Let me know if you need other help
--
Message posted from http://www.ExcelForum.com