Okay, I am really new at LaTeX so I may be screwing up terribly, but here's my problem. I'm writing a paper with several tables, one of which is in three parts, so I'm using \ContinuedFloat from the caption package to try to get correct captions.
What I want is the first table to be Table 1, then to have Table 2a, 2b, 2c. Instead, I get Table 1 and then Table 1a, Table 1b, Table 1c. Here's what I have (I apologize if it isn't enough, I'm not quite sure what you need!)
\documentclass{article}
\usepackage[demo]{graphicx}
\usepackage{caption}
\DeclareCaptionLabelFormat{cont}{#1˜#2\alph{ContinuedFloat}}
\captionsetup[ContinuedFloat]{labelformat=cont}
\usepackage[]{subfig}
\begin{document}
\begin{table}[!htbp]
\centering
\includegraphics{plachit.jpg}
\caption{}
\label{plachit}
\end{table}
\begin{table}[!htbp]\ContinuedFloat
\centering
\subfloat[]{\includegraphics{kisel1.jpg}}
\caption{Tier 1}
\label{kisel1}
\end{table}
\begin{table}[!htbp]\ContinuedFloat
\centering
\subfloat[]{\includegraphics{kisel2.jpg}}
\caption{Tier 2}
\label{kisel2}
\end{table}
\begin{table}[!htbp]\ContinuedFloat
\centering
\subfloat[]{\includegraphics{kisel3.jpg}}
\caption{Tier 3}
\label{kisel3}
\end{table}
\end{document}
I wasn't using subfloat at first, but from looking around trying to find an answer, it seemed like other people were. Not exactly sure if it's necessary.

(a)andTable 1a, so there seems to be2captions- do you want to keep this? If not then there'll probably be an option using thesubcaptionpackage, a sibling of thecaptionpackage – cmhughes Jun 6 '12 at 20:54\subfloat[<caption goes here>]{\includegraphics{kise13.jpg}}and\caption{}. You can click on theeditbutton to update your question – cmhughes Jun 6 '12 at 21:21