How can i create a table so that i can put bulleted texts in each cell with variable bullet points or even no bullet points and a single word like this:
A table like this does not work for me or maybe i don't know how to make it work for me.
\documentclass{article}
\usepackage[utf8]{inputenc}
\begin{document}
\begin{table}[]
\centering
\caption{My caption}
\label{my-label}
\begin{tabular}{lllll}
& & & & \\
& & & & \\
& & & & \\
& & & &
\end{tabular}
\end{table}
\end{document}


\documentclass{...}, the required\usepackage's,\begin{document}, and\end{document}. That may seem tedious to you, but think of the extra work it represents for TeX.SX users willing to give you a hand. Help them help you: remove that one hurdle between you and a solution to your problem. – Martin Schröder Dec 16 '16 at 23:37