Hello,
I am not sure if this is possible, but what i am looking for is a control on each line item on a report to align differently based on a rule. What i am trying to accomplish is separating notes out based on the user.
So any notes from myself i want to align on the left side of the report, but any notes not from myself i want to align that line item on the right side of the report (think of an chat/text message type screen).
I have:
If Me.FromUserID = Forms!frmMain!txtRMID Then
Me.dTimeStamp.Left = 1440 * 6.26
Else
Me.dTimeStamp.Left = 1440 * 0.1
End If
but i am not getting the results i want with the OnCurrent as i have to click each line item and then it moves All the dTimeStamps one way or the other.
Any ideas and if this is possible with a moderately proficient VBA user? I can go the basic route if needed but looking for that extra level of visual help.
Thanks
I am not sure if this is possible, but what i am looking for is a control on each line item on a report to align differently based on a rule. What i am trying to accomplish is separating notes out based on the user.
So any notes from myself i want to align on the left side of the report, but any notes not from myself i want to align that line item on the right side of the report (think of an chat/text message type screen).
I have:
If Me.FromUserID = Forms!frmMain!txtRMID Then
Me.dTimeStamp.Left = 1440 * 6.26
Else
Me.dTimeStamp.Left = 1440 * 0.1
End If
but i am not getting the results i want with the OnCurrent as i have to click each line item and then it moves All the dTimeStamps one way or the other.
Any ideas and if this is possible with a moderately proficient VBA user? I can go the basic route if needed but looking for that extra level of visual help.
Thanks