hilj, look at the sidebar here and see if this is what you want.
CyberCoder.net
I put each post in one category ONLY, then list the Posts BY category, I think that is the same thing you want.
Here is the code I use.
<?php
global $post;
$myposts = get_posts('numberposts=7&category=8');
foreach($myposts as $post) :
?>
<li><a href=<?php the_permalink(); ?>><?php the_title(); ?></a></li>
<?php endforeach; ?>