I need to translate this text box After Update event into an IIF I can run on an update query.
Me![tbxCorrectedString] = ProperManager(Me![tbxUncorrectedString], Me![optgrpConversion])
The value returned by the option group in this case would be vbProperCase. Is this statement below even remotely close?
=IIf(IsNull([field1]), [field1], ProperManger([field1], VBProperCase)
E