Your examples don't make sense to me, how does 234.50 return $1.00??
But to answer your question, to get the left side of the decimal point:
If only positive values:
=INT(A1)
If both positive and negative:
=TRUNC(A1)
To get the part after the decimal point:
=MOD(A1,1)