Hi @Fedegallo
You can format the date by adding a "DisplayText" column and applying your desired date format. In your combobox control, you would set the DisplayFields property to ["DisplayText"]
AddColumns(
With(
{daysInYear:DateDiff(Date(Year(Now()),1,1),Date(Year(Now())+1,1,1))},
ForAll(
Sequence(daysInYear,0),
DateAdd(Date(Year(Now()),1,1),Value)
)
),
"DisplayText",
Text(Value,"dd/mm/yyyy")
)