1
0
-1

like i have 1 form that collects data, from example, the username and his information
then another form that collects the payment information about that username.
Now, how can i have a list that displays some information from the first form and some information from the second form into 1 list? 

when i import form, i am only allowed to import 1 from into 1 list 

is there anyway to make it possible??

example:

the first form is 

username|name|gender|

the second form is 

username|fee|intake

now my list, i want to combine both form into 1 list, like to show the list like below

username|name|fee|intake|gender


i don't want to combine two form together because they will be used for different thing 
but some function require me to combine these two form  

    CommentAdd your comment...

    1 answer

    1.  
      2
      1
      0

      Hi M Tarek,

      i assume that the data that is binding these 2 together would be the username?
      say that your 1st form is called Form1 binded to table1(username|name|gender),
      and your 2nd form is called Form2 binded to table2(username|fee|intake).
      you can combine the 2 forms by going into the "Data" tab in List Builder


      by selecting "Advanced Form Data" as your Source of Data,
      you can join another form Data table by filling out the table as below


      hope this helps

        CommentAdd your comment...