Hi @REGINA LONG ,
The decision functions commonly used in SSRS are IIF and SWITCH, Switch is useful when there are three or more conditions to test because it’s simpler to read than nested IIF statements.
For you to have multiple 'else if's, the Switch function is more useful for you.
You will get the Day of the date field with the following expression:
=Day(Fields!START_EVENT_TIME.Value)
So your conditional expression looks like this:
=Switch(condition1,result1,condition2,result2,condition3,result3...)
See more: Switch function.
DATEDIFF function.
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.