I'm using SSRS 2005 connected to an Oracle (yikes!) 10g database and I'm getting all the fields I want, except I cannot get DateAdd to work. I'm pulling a datetime field from the database, and the end user wants that date field to appear on the report along with that date-plus-one for a "due date".
Anyway, I've tried the following and when I preview the report, the value in the field shows "#Error".
=DateAdd("Day",1,Fields!DATE_EXPECT_SHIP.Value)
Then I tried the following, with the same result:
=(DatePart("Day",Fields!DATE_EXPECT_SHIP.Value)+1)
Can anyone tell me what I'm doing wrong?
Anyway, I've tried the following and when I preview the report, the value in the field shows "#Error".
=DateAdd("Day",1,Fields!DATE_EXPECT_SHIP.Value)
Then I tried the following, with the same result:
=(DatePart("Day",Fields!DATE_EXPECT_SHIP.Value)+1)
Can anyone tell me what I'm doing wrong?