When you click on the arrow, it does not show anything on the form, I have the orders grouped and add another gallery to display them separately but at the time of selecting, it does not show anything on the next screen
Solved! Go to Solution.
Hi @Anonymous ,
It seems that you are using nested gallery. Is this narrow control inside the nested gallery? What is the formula in the OnSelect property of this narrow?
GroupBy does not group the data from data source side, that is to say, if you want to see the grouped data, then you need to create a new collection. The formula should be:
ClearCollect( C1,GroupBy(OrdenesAbiertas,"ORDEN_x0020_VENTA","Ordendeventa") )
Make sure that "ORDEN_x0020_VENTA" and "Ordendeventa" are the columns inside OrdenesAbiertas data source.
Then use C1 as the data source of your Form control.
Regards,
Mona
Hi @Anonymous ,
It seems that you are using nested gallery. Is this narrow control inside the nested gallery? What is the formula in the OnSelect property of this narrow?
GroupBy does not group the data from data source side, that is to say, if you want to see the grouped data, then you need to create a new collection. The formula should be:
ClearCollect( C1,GroupBy(OrdenesAbiertas,"ORDEN_x0020_VENTA","Ordendeventa") )
Make sure that "ORDEN_x0020_VENTA" and "Ordendeventa" are the columns inside OrdenesAbiertas data source.
Then use C1 as the data source of your Form control.
Regards,
Mona