I have a collection of dates in a canvas app. (No forms involved,) currently dispayed in a dropdown, that I need to display in a combobox. These are all Fridays and are set dynamically using the following formulas:
varFirst Friday:
Set(varFirstFriday, Text(DateAdd( DateValue("1" & "/" & "1" & "/" & Year(Today())), (6- Weekday(DateValue("1" & "/" & "1" & "/" & Year(Today())))))))
And I can set the dropdown to this or I can create a collection and display it in a gallery.
Filter(
ForAll(Sequence(52, Value(Trim(Last(FirstN(Split(varFirstFriday, "/"), 2)).Result)), 7), Date(Year(Today()), 1, Value)), (Trim(Last(FirstN(Split(Text(Value), "/"), 3)).Result)) = Text(Year(Today()))
)
ClearCollect(Fridays, ForAll(Sequence(52, Value(Trim(Last(FirstN(Split(varFirstFriday, "/"), 2)).Result)), 7), Date(Year(Today()), 1, Value)))
Those work nicely. If I try to display it in a combobox, using the formula or the collection I get this instead of a nicely formatted list of dates. I can't select the Value from the ComboBox data pane so the items property is Fridays.Value

Any ideas or suggestions for having it display in the correct format would be most appreciated.