Question : Missing Comma Error.....?

Not sure why I am getting this error. Really never had it before or atleast it telling me specific what the error is....

here's my code..
Code Snippet:
1:
2:
3:
4:
5:
select iruser, ; 
	    count(IIF(irsrc)='F', 1, 0) as cuts ; 
	from cItemrech, cBinloc ;
	    irloc=41 AND blgrp!='35VNL' AND irbin=blbin AND irqty<0 AND irloc=blloc;
	 	order by iruser group by iruser into cursor cCuts readwrite

Answer : Missing Comma Error.....?

IIF() is incorrect, also the WHERE is missing:
1:
2:
3:
4:
5:
6:
select iruser, ;  
            count(IIF(irsrc='F', 1, 0)) as cuts ;  
        from cItemrech, cBinloc ; 
       WHERE ;
            irloc=41 AND blgrp!='35VNL' AND irbin=blbin AND irqty<0 AND irloc=blloc; 
                order by iruser group by iruser into cursor cCuts readwrite
Random Solutions  
 
programming4us programming4us