Drag a Query Calculation to the crosstab rows. In the query calculation, use an if statement:
if ( plant = 'A' )
then ( plant )
else ( 'Others' )
and just drag your sales measure into the measure cells.
If you want to parameterize your plant, you can do that too by replacing 'A' with ?Plant? (i.e. if ( plant = ?Plant? )...