I am trying to simply wrap the text centered across two columns. The text is long so wrapping is needed. However, the result truncates the text.
\documentclass{article}
\usepackage{multirow}
\begin{document}
\begin{tabular} { |p{0.50\textwidth} |p{0.50\textwidth} |}
\hline
\multicolumn{2} {|c|}
{Number and Percent of Selected Cardiovascular Events by Treatment Group
and Hazard Ratio From Cox Regression Analysis}\\
\hline
Data Information 1 & Data Information 2\\
\hline
\end{tabular}
\end{document}

