Forum Discussion

Aartibhilare's avatar
Aartibhilare
Icon for Helper III rankHelper III
1 year ago
Solved

Printing report item into header

Hi team i want to print the date into the header its happening but same time i want to change the format of date to particular format it's not happening and shows like below i want in Sun, 30/Dec/20...
  • Anonymous's avatar
    Anonymous
    1 year ago

    Hi Aartibhilare 
    Thanks for reaching out microsoft fabric community forum

    If you want to see it in this format"Sun, 30/Dec/2018", use this:

    =Format(CDate("2018-12-30"), "ddd, dd/MMM/yyyy")
    Here is the syntax

    To format a field YourDateField to show the date as "Sun, 30/Dec/2018", use the below syntax

    =Format(CDate(Fields!YourDateField.Value), "ddd, dd/MMM/yyyy")

    If this post helps, then please give us Kudos and consider Accept it as a solution to help the other members find it more quickly.

    Thank you