Hi All,
I have a gallery in which I have added labels to display list item. text property of each label, I am using ThisItem.ColumnName. This is working fine and data is showing correctly in the gallery. Now I have added another label called "labelSerialNumber' to show the serial number like 1,2,3. On text property of 'labelSerialNumber' = varCountRow . In all rows it's showing 0 which I have set the value in the variable. Please help to resolve this issue.
On button click below code:-
Set(varCountRow,0);
ClearCollect(colSPListItemsAB,(Filter(collectionHSRH,
Created >= datePickerFromAB.SelectedDate || IsBlank(datePickerFromAB.SelectedDate),
Created <= datePickerToAB.SelectedDate || IsBlank(datePickerToAB.SelectedDate),
Status.Value = ddlStatus.Selected.Value || IsBlank(ddlStatus.Selected.Value)
))
);
ForAll(
Sequence(CountRows(colSPListItemsAB)),
varCountRow = varCountRow +1;
);
Thank you so much !!