I want to draw a picture like this:
I have tried, and got:
\documentclass{article}
\usepackage{tikz}
\usetikzlibrary{positioning, shapes.geometric}
\begin{document}
\begin{tikzpicture}[node distance=10pt]
\node[draw, rounded corners, align=center, fill=blue!20, fill opacity=0.6, minimum width=2cm,minimum height=1cm] (start) {\textbf{Firstly}\$A$};
\node[draw, below=of start, align=center, fill=blue!40, fill opacity=0.7, minimum width=3cm,minimum height=1cm] (step 1) {\textbf{Secondly}\$B$};
\node[draw, below=of step 1, align=center, fill=blue!40, fill opacity=0.7, minimum width=3cm,minimum height=1cm] (step 2) {\textbf{data}\$A+B$};
\node[draw, ellipse, right=30pt of step 2, align=center, fill=yellow!40, fill opacity=0.7] (step x1) {e};
\node[draw, below=of step 2, align=center, fill=blue!40, fill opacity=0.7, minimum width=3cm,minimum height=1cm] (step 3) {\textbf{Finally}};
\node[draw, ellipse, right=30pt of step 3, align=center, fill=yellow!40, fill opacity=0.7, minimum width=2cm,minimum height=1cm] (step x2) {\textbf{e}};
\node[draw, rounded corners, fill=blue!40, fill opacity=0.7, below=20pt of step 3] (end) {End};
\draw[->] (start) -- (step 1);
\draw[->] (step 1) -- (step 2);
\draw[->] (step 2) -- (step 3);
\draw[->] (step 3) -- (end);
\draw[->] (step 1) -| (step x1);
\draw[->] (step x1) -- (step 2);
\draw[->] (step 2) -| (step x2);
\draw[->] (step x2) -- (step 3);
\end{tikzpicture}
\end{document}



tikz-extpackage (see comment in my answer code). Install it by utility of your LaTeX distribution (at MiKTeX by MiKTeX Console). – Zarko Oct 14 '23 at 07:32bend left=30, or use-|and|-syntax for arrows, for example\draw[arr, rounded corners] ([yshift=-1mm] step 2.east) -| (step f); \draw[arr, rounded corners] (step f) |- (step 3.east);. Sorry, I don't understand your last comment. I use the same size of flowchart black as you defined in your code example and don't see any bad in text in them. Please explain yours assertion. – Zarko Oct 15 '23 at 08:08\node[N] (step 2) {\textbf{data}\\ $A+B+C+D+E+F+G$};gives nice result : node's content is in three lines. I suggest you to ask new question with link to my answer where you clearly explain what is your new problem. – Zarko Oct 15 '23 at 11:33