[Tex/LaTex] Tabular paragraph vertical alignment

tablesvertical alignment

How to make this kind of tabbed paragraph:
3 columns 2cm 10cm 2cm, the last column is right aligned and it's content starts on the last line of the paragraph of the second column.

10.      Some text or description here 
         can has more than one line           300

This is what I have so far:

\documentclass[10pt,a4paper]{report}
\begin{document}
\begin{tabular}{p{2cm}p{10cm}p{2cm}}
10. &
Some text or description here can has more than one line &
\raggedleft{300} \\
\end{tabular}
\end{document}

I dont know how to vertically align last column

Best Answer

It's probably easiest to make the final part part of the main paragraph so it naturally aligns with the last row. Exactly how to do that depends a bit on whether it needs to be multiple line or not, but for example

enter image description here

\documentclass[10pt,a4paper]{report}
\setlength\textwidth{16cm}
\begin{document}
\begin{tabular}{p{2cm}p{10cm}p{2cm}}
10. &
Some text or description here can has more than one line 
Some text or description here can has more than one line 
\hfill 300\hspace{-2cm}\mbox{}\\
\end{tabular}
\end{document}