Hi @Mikello-6626 ,
I have looked into that blog, so if you have created the Flow correctly, below are the steps you need to follow up:
1\ Set OnSelect of the "View history" icon to:
Set(
varHistory,
Versionhistorydemo,Run(ThisItem.ID).history
);
ClearCollect(
colHistoryTemp,
Split(
varHistory,
"|"
)
);
ForAll(
colHistoryTemp,
Collect(
colHistory,
{
Date: DateTimeValue(
First(
Split(
Result,
";"
).Result,
"nl-NL" //use your own language code
),
Version: Last(
FirstN(
Split(
Result,
";"
).Result,
2
).Result
).Result
}
)
);
Clear(colHistoryTemp);
Navigate(VersionHistoryScreen)
2\ On VersionHistoryScreen, you have a Gallery, set Items of the Gallery to:
Sort(
colHistory,
Date,
Descending
)
Hope this helps.
Best regards,
Community Support Team _ Jeffer Ni
If this post helps, then please consider Accept it as the solution to help the other members find it.