Display Month and day of week in Expression?

  • Can I use an expression that has..

    =Format(Fields!START_DATETIME.Value, "dd") + weekDAY NAME

    example 3/28/2013 = '28 - Thr'

    Thanks

  • so I got it workiung with

    =Format(Fields!START_DATETIME.Value, "dd") +" " + WeekDayName ( WeekDay( Fields!START_DATETIME.Value ) )

    but can i GET Fri instead of Friday?

    and or on 2 lines like 1

    Fri

  • You can use below expression:

    ="Today is: "& today &" Output: "& day(today)&" - "& WeekDayName(DatePart(DateInterval.Weekday,today),True,FirstDayOfWeek.System)

    And output will look like this

    Today is: 3/29/2013 Output: 29 - Fri

Viewing 3 posts - 1 through 2 (of 2 total)

You must be logged in to reply to this topic. Login to reply