I need the following format for one my report.

How to achieve this?
So far, I have tried using
framed environment to get the borders and adjusted the rule command to split the frame environment vertically. Now horizontally also I need to split which I am not able to achieve.
MWE:
\documentclass[a4paper,11pt]{article}
\oddsidemargin 0in \evensidemargin 0in \topmargin 0in \textheight 9.2in \textwidth 6.5in
\usepackage{enumitem, lipsum,xcolor}
\usepackage{framed}
\newlength{\framedline}
\setlength{\framedline}{\textwidth plus 18pt}
\let\oldrule\rule
\renewcommand{\rule}[2]{
\hspace*{-36.7pt}\oldrule{\framedline}{0.4pt}\newline
}
\usepackage{multicol}
\setlength{\columnseprule}{1pt}
\begin{document}
\begin{center}\bfseries
PROGRESS REPORT OF THE PROJECT \\
YEAR: 2015-2017(2 years)
\end{center}
\begin{framed}
\begin{enumerate}
\item \begin{multicols}{2}
\lipsum[1]
\end{multicols}\rule\\
\item \begin{multicols}{2}
\lipsum[1]
\end{multicols}\rule
\lipsum[1-20]
%
\end{enumerate}
\end{framed}
\end{document}

