The query works pretty fine, I can view result as a table and sql code on his own without any problem. However then I try to press query design button, it crashed without saying why. 
My code is pretty simple, after I added one more left join out of A subquery such error started to appear. This way last left join definitely cause the problem.  Tried to join without using subquery but I get problem saying about ambiguous outer join. I'm newbie with access but I heard about several bugs in that program, any suggestion how to fix?
This problem query:
    select    A.*,targetresp.* 
    from      (
    SELECT  * 
    FROM   target INNER JOIN ((source INNER JOIN InstanceList 
                    ON   source.INFO_SYSTEM_TYPE_CD = InstanceList.INFO_SYSTEM_TYPE_CD) 
INNER JOIN (N_table_transform INNER JOIN S2T 
                    ON    N_table_transform.N_table = S2T.N_table) 
                    ON    source.ID = S2T.source_id) 
                    ON    target.id = S2T.target_id ) as A
    left join targetresp 
                    on          a.target_TableName = targetresp.tablename;

