
Originally Posted by
noliveira
Dear all,
The idea is to make appear in lblBannerMessage all information that exist in cells.
For example:
First message: Sales: 1.000,00€
Second message: Cost: 500,00€
And so one…
The message should appears moving always from right to left.
This is possible?
Thanks in advance and best regards,
Hi,
You may need a label for each Item:
then when you initialize the userform you could have a code like this
Private Sub UserForm_Initialize()
Label1.Caption = "Sales: " & Format(Range("C1"), "#,##0.00 ""€""")
Label2.Caption = "Cost: " & Format(Range("C2"), "#,##0.00 ""€""")
End Sub
Bookmarks