Combining data from two forms into the same view
So I created a form that has exceeded the maximum amount of fields I can create. Therefore, I need to create a second form that is a continuation of the first form. I then somehow need to provide a view that combines the data from the first form with the data from the second form in synchronized way.
Example:
Customer fills out form A and clicks submit. They then use a link on my web page to bring up form B and begin filling it out. They then click submit. Data from both of these submissions need to be combined into one row in my view.
It's important to understand that Form B is optional and only used if the customer needs to submit more data than what is provided in form A.
How can I accomplish this?