I'm wondering if the following is possible. I can't seem to find any supporting documentation on the Microsoft site.
I have a control that I am using to "create" a project description that (via concatenation) pulls together several fields... some of which are % and currency. I have my expression as follows...
=<this should be a percent> [IntroAPR] & " Intro /" & <this should be a percent> [FeePercent] & " " & <this should be currency> [MinFee] & " Min " & <this should be currency> IIf(IsNull([MaxFee])," No Max ",IIf([MaxFee]="0"," No Max ",[MaxFee])) & "(per transaction) /" & <this should be a fixed number, no decimals> [BillingCycles] & " Months /" & " Variable Prime + " & <this should be a percent> [PrimePlus]
The result should be: "0.00% Intro / 2% $29 Min $60 Max (per transaction) / 5 Months / Variable Prime + 10.74%"
Can I format these fields using concatenation in a control on a form or report? OR do I need to create the illusion of concatenation by using individual controls and labels for extraneous text?
TIA
Lisa
I have a control that I am using to "create" a project description that (via concatenation) pulls together several fields... some of which are % and currency. I have my expression as follows...
=<this should be a percent> [IntroAPR] & " Intro /" & <this should be a percent> [FeePercent] & " " & <this should be currency> [MinFee] & " Min " & <this should be currency> IIf(IsNull([MaxFee])," No Max ",IIf([MaxFee]="0"," No Max ",[MaxFee])) & "(per transaction) /" & <this should be a fixed number, no decimals> [BillingCycles] & " Months /" & " Variable Prime + " & <this should be a percent> [PrimePlus]
The result should be: "0.00% Intro / 2% $29 Min $60 Max (per transaction) / 5 Months / Variable Prime + 10.74%"
Can I format these fields using concatenation in a control on a form or report? OR do I need to create the illusion of concatenation by using individual controls and labels for extraneous text?
TIA
Lisa