No prob! If you want to view thread traffic by forum you have to add some conditions into the ga code. I'm not sure how it works with the latest code though. If you have any DBSEO or vbSEO then things are a little easier to segregate by URL.
--------------- Added [DATE]1403746302[/DATE] at [TIME]1403746302[/TIME] ---------------
oh and you could use that query with a date range to get threads that have been started between those dates:
Code:
SELECT thread.title, thread.replycount, thread.views, forum.title AS forum
FROM thread
LEFT JOIN forum ON thread.forumid = forum.forumid
WHERE dateline > UNIX_TIMESTAMP('YYYY-MM-DD') AND dateline < UNIX_TIMESTAMP('YYYY-MM-DD')
ORDER BY thread.views DESC