Greetings
I use the following notation to report certain values.
>1.000
<0.0001
These values are in units of micromolar.
I would like some code to convert them to the following.
>1.00E-06
<1.00E-10
I have something like this..
Unfortunately is gives me:
[TABLE="width: 64"]
<colgroup><col width="64"></colgroup><tbody>[TR]
[TD="class: xl65, width: 64"]>0.0000001[/TD]
[/TR]
</tbody>[/TABLE]
Any help would be gratefully received.
Best wishes
Hj
I use the following notation to report certain values.
>1.000
<0.0001
These values are in units of micromolar.
I would like some code to convert them to the following.
>1.00E-06
<1.00E-10
I have something like this..
Code:
Sub Tidy_IC50()
' Tidy IC50 value if >1.000000
Dim dData As Range, aCell As Range
Set dData = Range("M5:M9") ' s
For Each aCell In dData.Cells ' starts loop in Range aData
If Left(aCell, 1) = ">" Then
aCell = Mid(aCell, 2, 10) / 1000000#
aCell = ">" & aCell
Else
aCell = aCell
End If
Next
End Sub
Unfortunately is gives me:
[TABLE="width: 64"]
<colgroup><col width="64"></colgroup><tbody>[TR]
[TD="class: xl65, width: 64"]>0.0000001[/TD]
[/TR]
</tbody>[/TABLE]
Any help would be gratefully received.
Best wishes
Hj