diff --git a/doc/dynare.texi b/doc/dynare.texi
index f7aff57a5290d525a8cd1ea7565501b5ca23859c..9598ed0d2de873fdbcfed81a709125a18a6bde60 100644
--- a/doc/dynare.texi
+++ b/doc/dynare.texi
@@ -95,7 +95,7 @@
 @c %**end of header
 
 @copying
-Copyright @copyright{} 1996-2013, Dynare Team.
+Copyright @copyright{} 1996-2014, Dynare Team.
 
 @quotation
 Permission is granted to copy, distribute and/or modify this document
@@ -10511,8 +10511,9 @@ Title for the table. Default: @code{none}
 @item titleSize, @code{STRING}
 @LaTeX{} string representing the size of the table title. Default: @code{large}
 
-@item vlineAfter, @code{dates}
-Show a vertical line after the specified date. Default: @code{empty}
+@item vlineAfter, @code{dates} || @code{CELL_ARRAY_DATES}
+Show a vertical line after the specified date (or dates if a cell
+array of dates is passed). Default: @code{empty}
 
 @item vlineAfterEndOfPeriod, @code{BOOLEAN}
 Show a vertical line after the end of every period (@i{i.e.} after
diff --git a/matlab/reports/@report_table/report_table.m b/matlab/reports/@report_table/report_table.m
index e84803dce2cc97996f04dfc440c372c5a8b4cb71..6d68f0253adbbbf8d175b708c75df7bfb6f3dc2e 100644
--- a/matlab/reports/@report_table/report_table.m
+++ b/matlab/reports/@report_table/report_table.m
@@ -12,7 +12,7 @@ function o = report_table(varargin)
 % SPECIAL REQUIREMENTS
 %   none
 
-% Copyright (C) 2013 Dynare Team
+% Copyright (C) 2013-2014 Dynare Team
 %
 % This file is part of Dynare.
 %
@@ -71,6 +71,10 @@ elseif nargin > 1
     end
 end
 
+if isa(o.vlineAfter, 'dates')
+    o.vlineAfter = {o.vlineAfter};
+end
+
 % Check options provided by user
 assert(ischar(o.title), '@report_table.report_table: title must be a string');
 assert(islogical(o.showHlines), '@report_table.report_table: showHlines must be true or false');
@@ -83,7 +87,7 @@ assert(isempty(o.data) || isa(o.data, 'dseries'), ...
        '@report_table.report_table: data must be a dseries');
 assert(isempty(o.seriesToUse) || iscellstr(o.seriesToUse), ...
        '@report_table.report_table: seriesToUse must be a cell array of string(s)');
-assert(isempty(o.vlineAfter) || isa(o.vlineAfter, 'dates'), ...
+assert(isempty(o.vlineAfter) || allCellsAreDates(o.vlineAfter), ...
        '@report_table.report_table: vlineAfter must be a dates');
 if o.showVlines
     o.vlineAfter = '';
diff --git a/matlab/reports/@report_table/write.m b/matlab/reports/@report_table/write.m
index 0325a74557c519c450f916004651f72ec1645e99..2e00b0c469a6e72c5bd4b9464b0f8d7db3bce0c0 100644
--- a/matlab/reports/@report_table/write.m
+++ b/matlab/reports/@report_table/write.m
@@ -64,9 +64,11 @@ for i=1:ndates
             end
         end
         if ~isempty(o.vlineAfter)
-            if dates(i) == o.vlineAfter
-                if ~(o.vlineAfterEndOfPeriod && dates(i).time(2) == dates(i).freq)
-                    fprintf(fid, '|');
+            for j=1:length(o.vlineAfter)
+                if dates(i) == o.vlineAfter{j}
+                    if ~(o.vlineAfterEndOfPeriod && dates(i).time(2) == dates(i).freq)
+                        fprintf(fid, '|');
+                    end
                 end
             end
         end
diff --git a/matlab/reports/allCellsAreDates.m b/matlab/reports/allCellsAreDates.m
new file mode 100644
index 0000000000000000000000000000000000000000..533ff49e4e6d50ae84c9595e7ca8ae71cd4a4c33
--- /dev/null
+++ b/matlab/reports/allCellsAreDates.m
@@ -0,0 +1,39 @@
+function tf = allCellsAreDates(dcell)
+%function tf = allCellsAreDates(dcell)
+% Determines if all the elements of dcell are dates objects
+%
+% INPUTS
+%   dcell     cell of dates objects
+%
+% OUTPUTS
+%   tf        true if every entry of dcell is a dates object
+%
+% SPECIAL REQUIREMENTS
+%   none
+
+% Copyright (C) 2014 Dynare Team
+%
+% This file is part of Dynare.
+%
+% Dynare is free software: you can redistribute it and/or modify
+% it under the terms of the GNU General Public License as published by
+% the Free Software Foundation, either version 3 of the License, or
+% (at your option) any later version.
+%
+% Dynare is distributed in the hope that it will be useful,
+% but WITHOUT ANY WARRANTY; without even the implied warranty of
+% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+% GNU General Public License for more details.
+%
+% You should have received a copy of the GNU General Public License
+% along with Dynare.  If not, see <http://www.gnu.org/licenses/>.
+
+assert(iscell(dcell));
+tf = true;
+for i=1:length(dcell)
+    if ~isa(dcell{i}, 'dates')
+        tf = false;
+        return;
+    end
+end
+end
\ No newline at end of file