I am using memoir and the sup-float support it provides. Here is a MWE (made by Werner originally in a different context, thanks):
\documentclass{memoir}
\usepackage{graphicx}
\newsubfloat{figure}% Allow subfloats in figure environment
\begin{document}
\begin{figure}
\centering
\subbottom[Increase]{%
\includegraphics[width=0.3\linewidth]{example-image-a}\label{fig1}}
\subbottom[Increase]{%
\includegraphics[width=0.3\linewidth]{example-image-b}\label{fig2}}
\subbottom[Increase]{%
\includegraphics[width=0.3\linewidth]{example-image-c}\label{fig3}}
\caption{Round}
\end{figure}
Figures \ref{fig1}-\ref{fig3} and \ref{fig2}-\ref{fig3}
\end{document}
In this examples the figures are referenced as Figures 0.1(a)-0.1(c) and 0.1(b)-0.1(c), however, I'd like for them to be referenced as Figures 0.1(a-c) and 0.1(b-c).
Is there a way to achieve this with memoir?

memoirbut possibly withcleveref. There are a couple of related (if not duplicate) questions about that on the site: How to make sub figure referencing work in memoir + cleveref? and Editing the reference style for subfigures using cleveref and memoir. – Alan Munn Sep 16 '16 at 05:02