Use textdata filter as '%tablename%'
or
You can run the query against syscomments table which will give you table used by procs, triggers and views used..
select distinct object_name(id) from syscomments
where text like '%Tablename%'
MohammedU
Microsoft SQL Server MVP