Hi @Mills, Tim W,
You may use sql query to format the date when loading data from sql database.
Ex:
SELECT
FORMAT(DateColumn, 'yyyy-dd-MM') AS FormattedDate
FROM YourTable;
Or you may use SSRS expression to format as you want.
=Format(Fields!ModifiedDate.Value,"dd/MM/yyyy")
=FORMAT(Fields!ModifiedDate.Value,"MM-dd-yyyy")
-- Current month
FORMAT(GETDATE(), 'MMMM yyyy') AS CurrentMonthName,
-- Previous month
FORMAT(DATEADD(MONTH, -1, GETDATE()), 'MMMM yyyy') AS PreviousMonthName
Regards,
Zoe Hui
If the answer is helpful, please click "Accept Answer" and upvote it.