M
mlieberstein
I have a textbox, txtYMV, on my form, frm_BusinessGroup, where the user
enters yyyymm value--i.e., 200906.
So on my report, BusinessGroupReport_rpt, I have a text box that says:
=Forms!frm_BusinessGroup!txtYMV, and I get back that value.
However I'd like to show the yyyymm value [200906] on the report as June
2009, I'd like to have an expression where:
If Right(txtYMV,2)= 01, then January and field [Year]
If Right(txtYMV,2)= 02, then February and field [Year]
If Right(txtYMV,2)= 03, then March and field [Year], etc.
Any ideas?
enters yyyymm value--i.e., 200906.
So on my report, BusinessGroupReport_rpt, I have a text box that says:
=Forms!frm_BusinessGroup!txtYMV, and I get back that value.
However I'd like to show the yyyymm value [200906] on the report as June
2009, I'd like to have an expression where:
If Right(txtYMV,2)= 01, then January and field [Year]
If Right(txtYMV,2)= 02, then February and field [Year]
If Right(txtYMV,2)= 03, then March and field [Year], etc.
Any ideas?