Hi @Warsi, MD Arshad ,
If you only want any part of the date/time, you will not be able to use the calendar table.
Do you only need the "Day" part of the date you want? For example, for the date "12/23/2021", you only need the value "23". If this is the case, you need to create another Dataset to assign values to the parameters. Use the following statement to create a Dataset:
SELECT DISTINCT DATEPART(day, YourDateField) AS OnlyDate
FROM YourTableName
Select "Get Value from a query" in the "Available Values" of the parameter property, and select the "OnlyDate" field in the Dataset.
If you want the date part of the date/time, you can use an expression to change the date format: =Format(Fields!YourDateColumn.Value,"dd/MM/yyyy")
If I misunderstood what your mean, please feel free to correct me.
Note: No matter what format your parameter is set to, if your parameter is used to view the report, please make sure that your report has the same field value as the parameter.
Best Regards,
Joy
If the answer is the right solution, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.