I found a solution to this challenge.
Firstly I created a new page template (copied the old one) and then I included the following:
<?php query_posts(“tag=news”); if (have_posts()) : while (have_posts()) : the_post(); ?>
Works like a charm. (Oh, and change the phrase “news” above to the tag you want to list.
David