Good morning here is my dilema. I have an open form called 'frm log' that is bound to table 'tbl account'. On 'frm log' I have the following data showing:
tbl accountid
tbl biz name
tbl phone
As well I have an unbound button called 'make call'. When I click the button I open a new form in a new window called 'frm calls'. It is bound to table 'tbl calls' it has the following data showing:
tbl callid
tbl accountid
tbl call type
tbl call outcome
When this second form opens I want the field tbl accountid to be filled with the account id in the first form 'frm log'. I would like all of this information to be written in as a new record to 'tbl calls'.
so for example on 'frm log' I have
tbl account id = 1234
tbl biz name = hello inc
tbl phone = 9999999999
when I open the second form 'frm calls' I would like to see
tbl callid (autofills)
tbl accountid = 1234 (from previous form)
tbl call type (user selects type of call)
tbl call outcome (user selects outcome)
And then the user would click save and a record would be stored into 'tbl calls' with '1234' as the accountid.
I need this because I will be running reports from 'tbl calls' to monitor how many calls are made to specific accounts, types of calls etc.
Any help you could give me would be greatly appreciated thanks.
tbl accountid
tbl biz name
tbl phone
As well I have an unbound button called 'make call'. When I click the button I open a new form in a new window called 'frm calls'. It is bound to table 'tbl calls' it has the following data showing:
tbl callid
tbl accountid
tbl call type
tbl call outcome
When this second form opens I want the field tbl accountid to be filled with the account id in the first form 'frm log'. I would like all of this information to be written in as a new record to 'tbl calls'.
so for example on 'frm log' I have
tbl account id = 1234
tbl biz name = hello inc
tbl phone = 9999999999
when I open the second form 'frm calls' I would like to see
tbl callid (autofills)
tbl accountid = 1234 (from previous form)
tbl call type (user selects type of call)
tbl call outcome (user selects outcome)
And then the user would click save and a record would be stored into 'tbl calls' with '1234' as the accountid.
I need this because I will be running reports from 'tbl calls' to monitor how many calls are made to specific accounts, types of calls etc.
Any help you could give me would be greatly appreciated thanks.