Related:
- Underlining a Value in a Variable
- My documents environment variable - Guide
- Underline symbol in computer - Guide
- Remove underline in link css - Guide
- Creation d'une table de nom variable dans mysql avec php - Programming Forum
2 responses
TrowaD
Posts
2921
Registration date
Sunday September 12, 2010
Status
Contributor
Last seen
December 27, 2022
555
Nov 24, 2016 at 11:36 AM
Nov 24, 2016 at 11:36 AM
Hi AdiK,
You can't apply format to a variable, but you can to a cell.
Best regards,
Trowa
You can't apply format to a variable, but you can to a cell.
Sub underline()
Dim x As Variant
x = "Hello"
Range("A1") = x
Range("A1").Font.underline = True
End Sub
Best regards,
Trowa