So I'm trying to pull data from a set. The info I need is the numbers around a decimal.
[TABLE="width: 500"]
<tbody>[TR]
[TD]Have[/TD]
[TD]Need[/TD]
[/TR]
[TR]
[TD]Intel Core 2.14 GHz[/TD]
[TD]2.14[/TD]
[/TR]
[TR]
[TD]AMD Core 1.99 GHz[/TD]
[TD]1.99[/TD]
[/TR]
[TR]
[TD]Intel Pentium 2.56 GHz[/TD]
[TD]2.56[/TD]
[/TR]
</tbody>[/TABLE]
I have been using the formula =MID(A1,FIND(".",A1,1),3) so I can get the numbers after the decimal but how can I get JUST the number before? Using LEFT function will not work because it just pulls from the beginning.
[TABLE="width: 500"]
<tbody>[TR]
[TD]Have[/TD]
[TD]Need[/TD]
[/TR]
[TR]
[TD]Intel Core 2.14 GHz[/TD]
[TD]2.14[/TD]
[/TR]
[TR]
[TD]AMD Core 1.99 GHz[/TD]
[TD]1.99[/TD]
[/TR]
[TR]
[TD]Intel Pentium 2.56 GHz[/TD]
[TD]2.56[/TD]
[/TR]
</tbody>[/TABLE]
I have been using the formula =MID(A1,FIND(".",A1,1),3) so I can get the numbers after the decimal but how can I get JUST the number before? Using LEFT function will not work because it just pulls from the beginning.