I need to pass the @TheVar variable to the <br>IN statement but this keep on giving me 0 records -<br>if I type the statement into the SQL <br>"WHERE Name IN ('John', 'Frank', 'Tom')<br>the statement works fine, 20 records returned.<br><br>DECLARE @TheVar nvarchar(40)<br>SET @TheVar = "'John', 'Frank', 'Tom'"<br><br>SELECT COUNT(FieldName) <br>FROM Clients <br>WHERE Name IN (@TheVar)<br><br>Any Ideas????? - MS SQL Server 7.0 SP2<br>Regards