I have fields called [month1] thru [month60]. if i subtract [monthleft] from [months2pay] i get the month number. now i need to pick up the data from the field that corresponds.
' ** TEXT3 has:
="[month"&[months2pay]-[monthleft]&"]"
' ** OUTPUT field
=IIf(Format(DateAdd("m",([months2pay]-[monthleft]),[firstpayment]),"yymmdd")<Format(Now(),"yy") & Format(Now(),"mm") & "15","We Have not Recieved Your Payment For Last Month blah blah","Payment for last Statement in the amount of " & [text3] & " - THANK YOU!")
Right Now I'm getting the text "[month1]" (ie. Payment For the Last Statement in the Amount of [month1] ) instead of the data in [month1].
Is that confusing enough?
Can anyone tell me how to go about this
' ** TEXT3 has:
="[month"&[months2pay]-[monthleft]&"]"
' ** OUTPUT field
=IIf(Format(DateAdd("m",([months2pay]-[monthleft]),[firstpayment]),"yymmdd")<Format(Now(),"yy") & Format(Now(),"mm") & "15","We Have not Recieved Your Payment For Last Month blah blah","Payment for last Statement in the amount of " & [text3] & " - THANK YOU!")
Right Now I'm getting the text "[month1]" (ie. Payment For the Last Statement in the Amount of [month1] ) instead of the data in [month1].
Is that confusing enough?
Can anyone tell me how to go about this