Prompt for alternate field name

L

Lori

I have a field that is being used for two possible values, bond or
contingency. If its being used for bond, I'd like the field name to read Bond
and contingency when its being used for contingency, is this possible?
 
B

Brendan Reynolds

If you just want to ask the user, sure, you can do that in the Open event of
the report ...

Private Sub Report_Open(Cancel As Integer)

Me.OrdersShippedLabel.Caption = InputBox$("Caption?")

End Sub

If you want to determine programmatically what the field is being used for,
I'd need more information as to how that can be logically determined.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top