I am embarrassed to be back so soon.
I do try to look up some documentation on these things.
New wrapping environments may be added when new float types are defined (us-ing memoir.cls, float.sty, or ccaption.sty). Any wrapping environment, wrapfigure,wraptable, or something else may be invoked using the wrapfloat environment, as in\begin{wrapfloat}{figure}{O}{5cm}.To use float.sty properly, load package float before wrapfig, and declare any new floattypes after loading both. Likewise for ccaption.sty and \newfloatlist and memoir.clsand its \newfloat.
I have tabular that I want to be on the one side of the page while text is formatted on the other side
of the same page
This code does just that:
\begin{wraptable}[]{r}{0.5 \textwidth}
\begin{tabular}{|l| rlr}
etc & etc & etc & etc \\
etc & etc & etc & etc \\
\end{tabular}
\end{wraptable}
except that this code will start the tabular _where_ever_ this code exists in the document in relation to the text this code is near.
The wrapfigure and wraptable environments [...] are not regular floats like figure and table
In addition to wrapping the text around this tabular, I would like the tabular to "float" and find a place
on a page where it can be created without running off the page.