L
ladybug via AccessMonster.com
I have a macro called mcr_email_pre-review
This macro has one action which is SendObject.
In the SendObject Message Text I had this:
=[Forms]![sfrm_status_of_lif_notes]![frm_rom_hours_notes]![it_est_total] &
[Forms]![sfrm_status_of_lif_notes]![frm_rom_hours_notes]![op_est_total]
Which worked great. However, it returned both together with no spaces.
I wanted to add labels and spaces so I tried this:
="IT EST - " & [Forms]![sfrm_status_of_lif_notes]![frm_rom_hours_notes]!
[it_est_total] & “OP EST -†& [Forms]![sfrm_status_of_lif_notes]!
[frm_rom_hours_notes]![op_est_total]
I now get an error that states Database can't parse the exression:="IT EST -
" & [Forms]![sfrm_status_of_lif_notes]![frm_rom_hours_notes]![it_est_total] &
“OP EST -†& [Forms]![sfrm_status_of_lif_notes]![frm_rom_hours_notes]!
[op_est_total]
Can anyone help me modify my code so that I can provide labels? Thank you.
This macro has one action which is SendObject.
In the SendObject Message Text I had this:
=[Forms]![sfrm_status_of_lif_notes]![frm_rom_hours_notes]![it_est_total] &
[Forms]![sfrm_status_of_lif_notes]![frm_rom_hours_notes]![op_est_total]
Which worked great. However, it returned both together with no spaces.
I wanted to add labels and spaces so I tried this:
="IT EST - " & [Forms]![sfrm_status_of_lif_notes]![frm_rom_hours_notes]!
[it_est_total] & “OP EST -†& [Forms]![sfrm_status_of_lif_notes]!
[frm_rom_hours_notes]![op_est_total]
I now get an error that states Database can't parse the exression:="IT EST -
" & [Forms]![sfrm_status_of_lif_notes]![frm_rom_hours_notes]![it_est_total] &
“OP EST -†& [Forms]![sfrm_status_of_lif_notes]![frm_rom_hours_notes]!
[op_est_total]
Can anyone help me modify my code so that I can provide labels? Thank you.