The answer in Cross-reference to unnumbered SUBsections shows how to define a custom \subsec command so as to allow cross-referencing with cleveref.
But how can I modify things to allow a plural form of \cref, referencing two such subsections.
Sample source:
\documentclass[12pt]{memoir}
\usepackage{hyperref}
\usepackage{cleveref}
\setsecnumdepth{subsection}
% subsections:
%
% Handle refs to subsections, which are unnumbered
\newcounter{subsec}
\makeatletter
\newcommand{\subsec}[1]{%
\subsection*{#1}%
\addcontentsline{toc}{subsection}{#1}%
\refstepcounter{subsec}%
\def\cref@currentlabel{[subsec][\arabic{subsec}][]#1}%
\def\@currentlabelname{#1}%
}
\makeatother
\crefname{subsection}{subsection}{subsections} % not used?
\Crefname{subsection}{Subsection}{Subsections} % not used?
\crefformat{subsec}{#2subsection~``#1''#3} % for unnumbered subsections
\Crefformat{subsec}{#2Subsection~``#1''#3} % ditto, caps
\begin{document}
In \cref{sec:one,sec:other} we outline. [OK, as expected]
\section{The section}\label{sec:one}
\section{The other section}\label{sec:other}
\begin{itemize}
\item In \cref{subsec:this} and \cref{subsec:another} we ponder. [OK]
\item In \cref{subsec:this,subsec:another} we analyze. [Does \textbf{NOT} work.]
\emph{Want output there to be:} subsections ``This one'' and ``Another one''
\end{itemize}
\subsec{This one}\label{subsec:this}
This is in a subsection.
\subsec{Another one}\label{subsec:another}
Here is another subsection.
\end{document}

subsec, notsubsection, so use\crefname{subsec}{subsection}{subsections}and similarly for\Crefname, not\crefname{subsection}{...}{...}which is already pre-defined bycleveref– Jul 27 '17 at 19:36subsectionlabel. – murray Jul 27 '17 at 20:58subsecto show up in the ToC, you ought to issue the instruction\settocdepth{subsection}-- or, equivalently,\setcounter{tocdepth}{2}. If, however, you do not wish unnumbered subsection headers to ever show up in the ToC, you might as well omit the instruction\addcontentsline{toc}{subsection}{#1}from the definition of the\subsecmacro. – Mico Jul 27 '17 at 21:30