Hi @AVTS ,
This how you can add as a row
ClearCollect(colMaterial, Filter(Datasource, Text(Created, ShortDate) = Text(Today(), ShortDate)));
ClearCollect(colMaterialPrevious, Filter(Datasource, Text(Created, ShortDate) = Text(DateAdd(Today(),-1), ShortDate) && mno in colMaterial.mno));
ClearCollect(colMaterialMerge, colMaterial, colMaterialPrevious)
use the colMaterialMerge as source for your gallery
Below for Add as column
ClearCollect(colMaterial, Filter(Test, Text(Created, ShortDate) = Text(Today(), ShortDate)));
ClearCollect(colMaterial,AddColumns(Filter(datasource, Text(Created, ShortDate) = Text(DateAdd(Today(),-1), ShortDate) && mno in colMaterial.mno),"Previous mno", mno));
User the colMaterial for your gallery
Please Thumbs up if my post helped you solve your issue.