I try to do a 3-table join in Access and it will not work. Is it possible?
Yes, it's possible:
Select * From A, B, C Where A.a = B.b And A.c = C.c
or
Select * From A, B, C Where A.a = B.b And B.c = C.c