Insertion of Field Value into String

  • Thread starter rtwiss via AccessMonster.com
  • Start date
R

rtwiss via AccessMonster.com

Is it possible to insert a Field Value into a String:

ElseIf [Name2] = 1 Then
GetConclusion = "Detect above standard for 1 out of XXXX quarters"
Else


"XXXX" is located in another field. How do I put these together?
 
D

Douglas J. Steele

Assuming the other field is named OtherField:

GetConclusion = "Detect above standard for 1 out of " & OtherField & "
quarters"
 
R

rtwiss via AccessMonster.com

Thanks
Assuming the other field is named OtherField:

GetConclusion = "Detect above standard for 1 out of " & OtherField & "
quarters"
Is it possible to insert a Field Value into a String:
[quoted text clipped - 3 lines]
"XXXX" is located in another field. How do I put these together?
 
Top