Zum Hauptinhalt gehen

Suche

Suche

Date Field

Kommentare

1 Kommentar

  • Avatar
    Fernando Ramos Miracle

    Hello Anthony,

     

    Our custom date format will only allow you to use the abbreviated format (Mon) in your case. What you could do is "crop" the last two characters from the data string, for which you'll need to isolate the "day" value on a separate data source and apply a simple VB script to it.

     

    You can do the latter from the "Transforms" tab by activating the VB script option and adding the below code to the "OnProcessData" event:

     

    Value = Left(Value,1)
    

    This will basically take the first letter from the left of the date string and set it up as the data source's value.

     

    Regards.

    0

Bitte melden Sie sich an, um einen Kommentar zu hinterlassen.