Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Your original calculation of date is incorrect.
date(XX_Performance_Date,'MMM-YY') as Performance_Date
This only effects the display format, it does not change the internal numeric format used for linking.
Both "01/15/2013" and "01/22/2013" will display as "Jan-13" but they will not link.
The correction is to include a MonthStart function to assign the same day each month.
date(MonthStart(XX_Performance_Date),'MMM-YY') as Performance_Date
-Rob
Hi Rob. I am actually only ever using the first date of the month for all the dates that input into this model so this should not be the problem.
I found that the solution was to concatinate (&) the fields together an a new table, add in all the fields again here and then re-name the fields so that the link to the original table is broken.