Hi All
I would appreciate some help on the below
I am currently using the below
Private Sub Form_Load()
If Me.Rolling_Year_Change.Value < 0 And Me.YTD_Change.Value > 0 Then
Me.Text147.Value = "The last 12 months are showing a decrease in spend, the YTD spend is increasing"
ElseIf Me.Rolling_Year_Change.Value > 0 And Me.YTD_Change.Value < 0 Then
Me.Text147.Value = "The last 12 months is positive and year to date showing negative growth"
End If
End Sub
This enters text into an unbound text box displaying some guidance notes on the values returned in [Rolling_Year_Change] and [YTD_Change]. I would like to do is rather than have the guidance notes in the code, I would prefer to hold the notes in a table and for the code to pull them from the table to display
Can anyone assist with this?
Thanks
Ali
I would appreciate some help on the below
I am currently using the below
Private Sub Form_Load()
If Me.Rolling_Year_Change.Value < 0 And Me.YTD_Change.Value > 0 Then
Me.Text147.Value = "The last 12 months are showing a decrease in spend, the YTD spend is increasing"
ElseIf Me.Rolling_Year_Change.Value > 0 And Me.YTD_Change.Value < 0 Then
Me.Text147.Value = "The last 12 months is positive and year to date showing negative growth"
End If
End Sub
This enters text into an unbound text box displaying some guidance notes on the values returned in [Rolling_Year_Change] and [YTD_Change]. I would like to do is rather than have the guidance notes in the code, I would prefer to hold the notes in a table and for the code to pull them from the table to display
Can anyone assist with this?
Thanks
Ali