Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All,
I want to split a single row's value into multiple rows.
E.g: For location 11 & item ABC, the qty is 2 so its corresponding fields(NO,DATE,COMMENTS) should be split into next two rows. If the qty is 5 then 5 corresponding rows to be added.
Hi @iswarya
Can you share or explain your source data? It seems the screenshot is for the result you want to get.
Regards,
Arnaldo Sandoval
Hi,
I have attached the app for reference.
Hi @iswarya
You are dealing with a Header-Detail model, my proposed solution take these actions:
This screenshot shows the result you want.
Comments:
I attached the solution.
Hope this helps,
Hi @iswarya
It seems you deleted your reply, anyhow, you can swap the Type tag, replace '1H' with '1D' and '2D' with '1H', then, at the user interface you should change the conditions, checking for '1D' instead of '1H'
=if(Type = '1D', [Detail_Column_Name], ' ')
// for the LOCATION, ITEM and QTY columns
and
=If(Type = '1D', ' ', [Header_Column_Name])
// for the NO and COMMENTS columns
I tried different visualizations, like Straight Table; Pivot Table and P&L Pivot but the standard Table does the job.
Do You think my proposed solution resolve your problem?
Regards,
It's half resolved. But is it possible to bring the location and Item name against the no and comments column? Because when I make a selection for location or Item, the 'NO' and 'COMMENTS' field is not displayed.
Yes you can, actually this is a summary of the changes:
These are the screenshots:
and
The new version of the application is attached.
Best regards,