justinwright
Registered User.
- Local time
- Today, 17:56
- Joined
- Jul 14, 2010
- Messages
- 19
I've read similiar articles, and tried solutions on each, but for some reason none of it is working
I have three boxes
1) Explanation
2) chknum (check number)
3) ditm (date item)
It's usually either chknum or ditm, but it can be neither. I have an if statement changing the visibility of the boxes based on if it's needed or not.
Regardless, I want to concatenate the applicable item into a box that's bound to a table (it's interfacing with an older program, long story).
Sample code is as follows:
Whenever I do that, it still returns just "VOID" in the box, nothing else
I've also tried:
Any help is much appreciated!
I have three boxes
1) Explanation
2) chknum (check number)
3) ditm (date item)
It's usually either chknum or ditm, but it can be neither. I have an if statement changing the visibility of the boxes based on if it's needed or not.
Regardless, I want to concatenate the applicable item into a box that's bound to a table (it's interfacing with an older program, long story).
Sample code is as follows:
Code:
If Me.Explanation.Value = "VOID" Then
Me.Concatenated.Value = [chknum] & " " & [Explanation]
End If
Whenever I do that, it still returns just "VOID" in the box, nothing else
I've also tried:
Code:
If Me.Explanation.Value = "VOID" Then
Me.Concatenated.Value = Format([chknum], "00000000") & " " & [Explanation]
End If
Any help is much appreciated!