Hello,
I create an App that manages tyre hotel for client tyres, working orders etc. I created dozen of action to manage those tyres through warehouse to service, work orders etc. The tables that I have in app:
- Calendar table // google calendar were clients make an appointments
- WorkOrder table
- Warehouse table // every tyre in warehouse has unique SKU number(Key) and every car has an RVS unique number(set of 4 SKU-s)from that car(Label)
- Selection table //Help table for export tyre from Warehouse to WorkOrder table
I will try to explain in steps
- I have a first action that copy data from Calendar and create new row(NewWorkOrder) in WorkOrder table. Second action jumps me with LINKTOFILTEREDVIEW to Warehouse where I have already filtered results(via number of Car registration plates)
- From Warehouse, then bulk select up to 4 tyres that I want to have in WorkOrder table and copy to Selection table. I got then 4 rows, every row with one SKU
How can I copy those 4 SKU-s to that particular row that I created from calendar. In that row(WorkOrder table) i have columns in row SKU1, SKU2, SKU3, SKU4.
- Regularly, in WorkOrder table I have initial value set for columns: SKU1, SKU2, SKU3, SKU4
INDEX(
ORDERBY(
SELECT(Selections[SKU],TRUE),
[_RowNumber]
),
1)
So, when i hit action to create new row in WorkOrder table, it grabs first 4 tyres from selection table and puts them in those 4 columns.
In new scenario, I need them to be copied to that certain row that I created from calendar.
Thank You al for help in advance

