I currently have at able whose row's height is set, so I can control it. This is what it looks like:
\begin{tabular}{ @{} p{1.60in} l @{} }
\hspace{-0.8in}\textbf{Fundacion Tecnologica Centroamericana} & \textbf{13/09/2012}\vspace{-0.06in} \\[0.3in]
\multicolumn{2}{ l }{\hspace{-0.8in}\textbf{Ciudad}\vspace{-0.07in}} \\
\multicolumn{2}{ l }{\hspace{-1.15in}\textbf{NIT}} \\
\end{tabular}
I used [] to set height. It works fine, but the row is of course taller than the text, this is what I want because as more text fills in I want it to go "up" in the cell, not push everything below it down.
So how do I tell it to vertically align bottom of the row for that row?
EDIT (Update):
Ok, this is what I have so far, I went with the tabularht from below. It works by allowing me to position absolutely everything, great! Problem is the part that I want is still filling downward, I need it to fill UP so that it stays where I put it at.
\begin{tikzpicture}[remember picture,overlay]
\node [anchor=south] at ( $ (current page.center) + (-1.5cm,3.15cm) $ )
{
\begin{tabularht}{3cm}{ @{} b{2.35in} @{} }
\textbf{Fundacion Tecnologica centroamericana} \\[0.05in]\hline
\end{tabularht}
};
\end{tikzpicture}
\begin{tikzpicture}[remember picture,overlay]
\node [anchor=south] at ( $ (current page.center) + (3cm,3cm) $ )
{
\begin{tabularht}{3cm}{ @{} l @{} }
\textbf{13/09/2012}
\end{tabularht}
};
\end{tikzpicture}
Here are the images to show you what I am doing:


See how it pushes down and overtop of the text below it. I need it to push up and keep at the nombre part. If for instance the nombre part is only two words and only needs the first line it should stay in line, but if it's 3 or 4 word's and pushes to a second line the other word's should push UP instead of down overtop of everything. Thanks for all the help.




\\[0.3in], you might be interested in adding a zero-width rule of specific height to (say) the first cell in a particular row:\rule{0pt}{0.5in}. – Werner Sep 13 '12 at 23:16