I want to have four form questions in one row of table. I have the following four questions in the table row in Fig. 1:
Key: Yes/No i.e. tick for Yes- Choose one from
V2-V0 - Choose one from
P2-P0 Critical: Yes/No i.e. tick for Yes
Code and its output in Fig. 1 where I cannot integrate Form options in the table cells
\documentclass{beamer}
\usepackage[english]{babel}
\usetheme{Berkeley}
\usepackage{microtype}% more flexibility for narrow columns
\usepackage{tabularx}
\usepackage{booktabs}
\usepackage{siunitx}
\usepackage{adjustbox}
\begin{document}
\begin{frame}
\begin{adjustbox}{max width=1.1\textwidth,center}
\begin{table}[!ht]
\centering
% TODO have Form options in the table cells
\begin{tabular}{|l|l|l|l|l|l|l|l|l|}
\hline
\textbf{Key} &
\textbf{V2} & \textbf{V1} & \textbf{V0}
& \textbf{SCORE}
& \textbf{P1} & \textbf{P2} & \textbf{P3}
& \textbf{Critical} \\ \hline
& & & & 1. Skills & & & & \\ \hline
\end{tabular}
\end{table}
\end{adjustbox}
\end{frame}
\begin{frame}
% Show reproduction of the answers in the next sheet.
\end{frame}
\end{document}
I can do the form options in enumerate:
% I can do form in enumerate but not in table
\begin{Form}
\begin{enumerate}
\item \ChoiceMenu[name=football,radio,default=-0]{Do you play football?}{Much (2)=2,Little (1)=1,Not at all (0)=0}
\item \ChoiceMenu[name=ice-hockey,radio,default=-0]{Do you play ice-hockey?}{Much (2)=2,Little (1)=1,Not at all (0)=0}
\end{enumerate}
\end{Form}
Fig. 1 Output where table structure
Expected output: four questions in one row of table, and reproduce those answers in the last slide
Example eforms structure based on Creating fillable PDFs
\begin{tabular}{lp{4in}}
Key & \infoInput{Key}\\[6pt]
V2 & \infoInput{V2}\\[6pt]
V1 & \infoInput{V1}\\[6pt]
V0 & \infoInput{V0}\\[6pt]
P1 & \infoInput{P1}\\[6pt]
P2 & \infoInput{P2}\\[6pt]
P3 & \infoInput{P3}\\[6pt]
Critical & \infoInput{Critical}\\[6pt]
\end{tabular}
Testing Ulirke's proposal
Ulrike' s proposal works for one row at the moment. I am thinking how it can work with many rows. Extended the case in the thread How to set centers of two rows aligned? for the adjusted center, where the expected output: row names aligned at the center.
OS: Debian 9
TeXLive: 2017 manual installation at /usr/local/
Acrotex and eforms: installed like this


eformsyourself as it relies on non-free stuff, so is excluded from TL. (But every time I think I understand this package's status, I find out I'm wrong.) – cfr Aug 15 '17 at 21:46tlmgr conf auxtrees add /path/to/root-of-texmf. – Ulrike Fischer Aug 20 '17 at 17:39