When using \textcite or \textcites with more than one author in BibLaTeX, the result is not really usable and has to be fixed manually which can hardly be the point of the command:
\documentclass{minimal}
\listfiles
\usepackage{filecontents}
\begin{filecontents}{\jobname.bib}
@article{alice,
author = {Alice, A.},
}
@book{bob,
author = {Bob, B.},
}
@collection{charlie,
editor = {Charlie, C.},
}
\end{filecontents}
\usepackage[style=numeric,sortcites]{biblatex}
\addbibresource{\jobname.bib}
\begin{document}
Refer to the works of \textcite{charlie,alice,bob}.
Refer to the works of \textcite{alice,bob} and \textcite{charlie}.
\end{document}
Which looks like this:

One can argue about having a comma between the second and third element but surely the "and" is mandatory in English. So is there a way to get BibLaTeX to behave that way?

\finalandcommamacro in the biblatex manual which is especially for this. – PLK Jan 07 '13 at 06:43\finalnamedelimwhich sounds good but is just used for multiple names in one citation and not for multiple citations. Irritatingly so, I should add. – Christian Jan 07 '13 at 09:44