Hi @Krishna98 :
Do you mean:
- There are two lists, one list saves users and user orders, and one list saves order details.
- You want to link these two orders in some way.
If my understanding is correct, just create a unique identifier "order number" field.
List1:
| UserName(Text) |
OrderNumber(Text) |
| |
|
| |
|
List2:
| OrderNumber(Text) |
Image |
Manfact |
Modified |
Price |
Title |
| |
|
|
|
|
|
When you save the record, you can first generate a random and unique order number.For example:
Set(TheVar,Text(Now(),"[$-en]yyyymmddhhmmss")& Text(RoundUp(Rand()*10000,4),"[$-en]0000"));/*Randomly create an order number*//*TheVar is my custom variable*/
Patch(List1,Defaults(List1),{UserName:User().FullName,OrderNumber:TheVar});
Patch(List2,{OrderNumber:TheVar,Imate:xxx,Man……})
So you can find the corresponding records in list2 by order number.
Best Regards,
Bof