Date not correct

Hi team
why date change when i want to use it in a concatenate expresion?
2X_1_114e02fe9a2cecab13e72920533239e0bcc6846f.png

thks

Solved Solved
0 2 273
1 ACCEPTED SOLUTION

Steve
Platinum 4
Platinum 4

In your CONCATENATE() expression, wrap the reference to the Date column with TEXT():

CONCATENATE(
  TEXT([dia),
  [usuari]
)

The TEXT() function will apply the columnโ€™s configured formatting preferences and the broader localization settings.

View solution in original post

2 REPLIES 2

Steve
Platinum 4
Platinum 4

In your CONCATENATE() expression, wrap the reference to the Date column with TEXT():

CONCATENATE(
  TEXT([dia),
  [usuari]
)

The TEXT() function will apply the columnโ€™s configured formatting preferences and the broader localization settings.

Thks Steve, it runs ok!

CONCATENATE(
TEXT([dia]),
[usuari]
)

Top Labels in this Space