You can use the package longtable. The only drawback for you probably is that you have to input the data by lines, not by columns, but I dunno.
Remark: Everything with lipsum in name is there only to provide some dummy text.
Remark 2: \endfirsthead ends the code used for the head on page one. Similar commands \endlastfoot (foot on last page of the table) and \endhead and \endfoot exist (for the "running" heads and foots). They are placed after the piece of code to be the head/foot.
Remark 3: You can format the table similarly as tabular (adding lines, centering columns etc.)
\documentclass{article}
\usepackage{longtable}
\usepackage{lipsum}
\begin{document}
\lipsum[1]
\begin{longtable}{lll}
Col 1 head & Col 2 head & Col 3 head \\\endfirsthead
c1 & c2 & c3 \\
c1 & c2 & c3 \\
c1 & c2 & c3 \\
c1 & c2 & c3 \\
c1 & c2 & c3 \\
c1 & c2 & c3 \\
c1 & c2 & c3 \\
c1 & c2 & c3 \\
c1 & c2 & c3 \\
c1 & c2 & c3 \\
c1 & c2 & c3 \\
c1 & c2 & c3 \\
c1 & c2 & c3 \\
c1 & c2 & c3 \\
c1 & c2 & c3 \\
c1 & c2 & c3 \\
c1 & c2 & c3 \\
c1 & c2 & c3 \\
c1 & c2 & c3 \\
c1 & c2 & c3 \\
c1 & c2 & c3 \\
c1 & c2 & c3 \\
c1 & c2 & c3 \\
c1 & c2 & c3 \\
c1 & c2 & c3 \\
c1 & c2 & c3 \\
c1 & c2 & c3 \\
c1 & c2 & c3 \\
c1 & c2 & c3 \\
c1 & c2 & c3 \\
c1 & c2 & c3 \\
c1 & c2 & c3 \\
c1 & c2 & c3 \\
c1 & c2 & c3 \\
c1 & c2 & c3 \\
c1 & c2 & c3 \\
c1 & c2 & c3 \\
c1 & c2 & c3 \\
c1 & c2 & c3 \\
c1 & c2 & c3 \\
c1 & c2 & c3 \\
c1 & c2 & c3 \\
c1 & c2 & c3 \\
c1 & c2 & c3 \\
c1 & c2 & c3 \\
c1 & c2 & c3 \\
c1 & c2 & c3
\end{longtable}
\lipsum[2]
\end{document}
multicolsenvironment that doesn't balance the columns. There is also the\columnbreakmacro which ends one column and lets you start the next. Having said that I also think that a table might be better suited for the task. – cgnieder Jan 27 at 22:56&. So if you want "e: 323" in the first column and FREQ: 0.12737 in the second column, you need to write:e: 323 & FREQ: 0.12737\\. If the first line should only contain entry in one cell, you can do that like this:Title&\\(the second cell will contain nothing in this case). When you start specifying the content of column2&3 you should automatically see that the data you have entered so far, will only appear in column1. – myrtille Jan 28 at 1:35