Hola, como te dice luisgutierrezb te falta el AND, tu condición mas o menos quedaría asi.
Código Delphi
[-]
filtrado:='';
banderita := False;
if chgarage.Checked then
begin
filtrado := '(IdTGarage = 6)';
banderita := True;
end;
if Chtelefono.Checked then
if banderita then
filtrado:=filtrado + ' AND (Telefono = false)'
else
filtrado:=filtrado + '(Telefono = false)';
..................
..................
Saluditos