I want to combine six different memo fields into one. I found this code and it works to combine two fields so I edited to add a third and it does not do anything.
This is my edited code to add a third field:
What am I missing to add the other fields? TIA
Code:
Comments: [QAComments1] & IIf(IsNull([QAComments2]),"","; " & [QAComments2])
This is my edited code to add a third field:
Code:
Comments: [QAComments1] & IIf(IsNull([QAComments2]),"","; " & [QAComments2] & IIf(IsNull([QAComments3]),"","; " & [QAComments3]))
What am I missing to add the other fields? TIA