Thankyou. I think this has solved my issue.
I have no idea what it means but it seems to be converting them.
Jacob Skaria wrote:
Try this UDF (User Defined function). From workbook launch VBE using Alt+F11.
29-Apr-10
Try this UDF (User Defined function). From workbook launch VBE using Alt+F11.
From menu Insert a Module and paste the below function.Close and get back to
workbook and try the below formula.
=EVAL(A1:E1)
and format the formula cell to %
Function Eval(rngTemp As Range) As Variant
Dim cell As Range
For Each cell In rngTemp
Eval = Eval + Evaluate("=" & cell.Text)
Next
Eval = Eval / rngTemp.Count
End Function
--
Jacob (MVP - Excel)
"SarahN" wrote:
Previous Posts In This Thread:
Submitted via EggHeadCafe - Software Developer Portal of Choice
Using VSTO Add-In To Automate Frequent Excel 2007 Tasks
http://www.eggheadcafe.com/tutorials...n-to-auto.aspx