Display all records from query on form

纵饮孤独 提交于 2020-01-16 18:33:06

问题


When I made a query, first only records with entries in all of the related tables where showing. I was able to change this behavior by changing the join properties (to a left join).

I want the same behavior for the form: all of the records should be accessible through the form. However, I don't find a way to change the join-type for forms.

How can this be done?


回答1:


In your query designer, double click the line that represents the join, it should give you a button called Join Type or something of the sort. That'll give you 3 options which are basically INNER, LEFT and RIGHT

To make the form have the same records showing, change the RecordSource in the forms properties to change the name of the record from the table to the query with the right join.



来源:https://stackoverflow.com/questions/25448530/display-all-records-from-query-on-form

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!