There's a few problems with your logic.
- Firstly you shouldn't be converting anything to string (CStr) at all. The only reason you might need to do that in SSRS is to display a tool-tip or some other string-only field. You certainly shouldn't be trying to do that prior to summing them, although that doesn't work the way you are expecting anyway.
- Secondly the parameter that your function takes is 'length' which this code assumes is the number of days. You are then returning the number of days. The function doesn't seem to have a purpose other than to split up a length of days into set values of year(365.25) and month (30) and then recombining to add up this standardised year and month lengths. Except that you seem to have incorporated leap years in a crude fashion. Who is to say that length of 366 days is a year? It could be a leap year or it could be 1 year and 1 day.
- The variables you have declared are all integers but you are using floats or decimals in your math.
- You are getting the values for year & month but then overwriting them with other values in unecessary steps.
Assuming you have a good reason for doing all this (please share!) and can't use something simple like: =datediff(d,fields!FirstDate.Value,fields!SecondDate.value)
then I can show you where this function is going wrong.
In this part:
if length >= 366 then
year=cstr(Math.Floor (length/ 365.25))
length =(length Mod 365.25)
length =(year * 365)
year =cstr(length)
Take an input value of 367. the second line will give you year=1. The third line will give you length=0. Yes, zero. You've declared everything as integers, and integers will implicity truncate any mantissa (the bit after the decimal point). You want to declare these as a floating point or better, an exact numeric. The fourth line overwrites your length value with Year(1) * 365 = 365. The fifth line then converts 365 to a string and assigns it to year, except year is an integer so it is implicitly cast back to an integer. If your variables were declared as the right type, you only need these 3 lines, but again the 366 days thing is very agricultural. It handles edge cases poorly.
if length >= 366 then
year=cstr(Math.Floor (length/ 365.25))
length =(length Mod 365.25)
The next part:
if length>31 Andalso length<366 then
This is also unecessary. You've already ensured in the first part of the code that the length is now less than 365 (and if the variables were the right datatype then length would be less than 365.25)
This is enough:
if length>31 then
You've done the same thing in this next part, the first two lines are enough, again assuming your datatypes are fixed.
month=cstr (Math.Floor(length/30.4375))
length=(length Mod 30.4375)
length=(month * 30)
month=cstr(length)
In this next part, it works (apart from the Cstr) but is uncomfortable. You should check for length = 0 before you test if length < 31.
if length<31 Then
day =cstr(length)
end if
if length = 0 then
Return String.Empty
end if
You said in the comments two conflicting statements. First that you have inputs like year / month days and second that you have start and end date parameters. If the second is true and you have start / end dates then throw away this code and use datediff. The inbuilt functions already consider leap years and the actual lenghths of months, no need for you to use crude averages.
It seems like you've used custom code for the sake of it, a complex solution to a non-existant problem.