silentwolf
Well-known Member
- Joined
- May 14, 2008
- Messages
- 1,216
- Office Version
- 2016
Hi guys,
sorry again for a simple question but I cant seem to get it to work.
I have tried with this code above and I am getting the right look of it but it is saved as text in the cell which is not that helpful .(
how do I need to combine this code with numberformating so I am getting € 45,00 for example.
Thank you
Albert
sorry again for a simple question but I cant seem to get it to work.
Code:
If Weekday(rngCel) = 1 Then rngCel.Offset(0, 1).Value = 45
.NumberFormat = "0.00"
Code:
If Weekday(rngCel) = 1 Then rngCel.Offset(0, 1).Value = Format(45, "Currency")
I have tried with this code above and I am getting the right look of it but it is saved as text in the cell which is not that helpful .(
how do I need to combine this code with numberformating so I am getting € 45,00 for example.
Thank you
Albert
Last edited: