M
Mia
Hi,
I cant get the userform to show arspremie in the right format.
I want to show it in currency, do anyone know how to do this?
My code are:
Private Sub UserForm_Activate()
Application.OnTime Now + _
TimeValue("00:00:05"), "KillTheForm"
Dim namn As String
Dim antal As String
Dim arspremie As Currency
namn = Application.UserName
Label2 = namn
antal = Sheets("Uppföljning").Range("S4")
Label4 = antal & " st"
arspremie = Sheets("Uppföljning").Range("L3")
Label5 = arspremie
Format (arspremie, "Currency")
End Sub
I cant get the userform to show arspremie in the right format.
I want to show it in currency, do anyone know how to do this?
My code are:
Private Sub UserForm_Activate()
Application.OnTime Now + _
TimeValue("00:00:05"), "KillTheForm"
Dim namn As String
Dim antal As String
Dim arspremie As Currency
namn = Application.UserName
Label2 = namn
antal = Sheets("Uppföljning").Range("S4")
Label4 = antal & " st"
arspremie = Sheets("Uppföljning").Range("L3")
Label5 = arspremie
Format (arspremie, "Currency")
End Sub