I've just finished my first TikZ flowchart, and I have a couple of wished to improve it, but I can't seem to search my way to a solution. I would like do this in 2 colomns, with dashed a line between them. As you can see, theres one node, where the dashed line is intented to be. Is it possible to make a tabular or multicol, in a way where thats possible?
\documentclass{memoir}
\usepackage[latin1]{inputenc}
\usepackage[a4paper,vmargin={30mm,0mm},hmargin={0mm,0mm}]{geometry}
\usepackage{tikz}
\usetikzlibrary{shapes,arrows, shadows, calc}
\begin{document}
\pagestyle{empty}
\begin{center}
\tikzstyle{block} = [rectangle, draw, fill=gray!20,
text width=8em, text centered, minimum height=4em, drop shadow]
\tikzstyle{line} = [draw, -latex']
\tikzstyle{cloud} = [draw, rectangle, rounded corners,fill=white!20, node distance=2cm,
minimum height=2em, drop shadow]
\begin{tikzpicture}[node distance = 2cm]
\node [block, xshift=12em] (post) {\large Postmoderne};
\node [block, xshift=-12em] (modern) {\large Moderne};
\node [cloud, below of=modern, node distance=7em, fill=red!20] (auto) {Øget \emph{control}};
\node [cloud, below of=auto] (active) {\emph{Active learning} og positive udviklingsspiral};
\node [cloud, below of=active] (effect) {Mere effektivitet og positive emotioner};
\node [cloud, below of=post, node distance=4em, fill=red!20] (sparring) {Sparringssamarbejde};
\node [cloud, below of=sparring, node distance=3em] (support) {Øget social support};
\node [cloud, below of=support, node distance=11em] (kom) {Bedre kommunikation og gensidig respekt};
\node [cloud, below of=modern, node distance=24em, xshift=12em, fill=green!20] (res) {Resiliens hos medarbejder og organisation};
\path [line] (sparring) -- (support);
\path [line] (auto) -- (active);
\path [line] (active) -- (effect);
\path [line] (support) -- (active);
\path [line] (active) -- (kom);
\path [line] (kom) -- (res);
\path [line] (effect) -- (res);
\end{tikzpicture}
\end{center}
\end{document}

Øin your file. It might just be my machine. (ERROR: Package inputenc Error: Keyboard character used is undefined in inputencoding latin1.) PS\usepackage[utf8x]{inputenc}works for me. – John Wickerson Jun 07 '13 at 14:02matrix. Thematrixis the TikZ counterpart to the LaTeXtabularorarray. – John Wickerson Jun 07 '13 at 14:06:-). And do feel free to ask for any clarification regarding my answer, if needed. – John Wickerson Jun 07 '13 at 14:35\tikzstylemacros are deprecated, see Should\tikzsetor\tikzstylebe used to define TikZ styles?. The position keysbelow of(and others) are also depcreated, see Difference betweenright of=andright=ofin PGF/TikZ. – Qrrbrbirlbel Jun 07 '13 at 20:37