Posts by Luis_vxd • 16 points
2 posts
- 
		0 votes1 answer80 viewsA: Insert signature already made in macro VBATry adding the following to the email code. Adjust as needed: Const MyPath = "C:\Assinatura\" Const MyPicture = "Assinatura1.jpg" With CreateObject("Outlook.Application").CreateItem(0)… 
- 
		0 votes1 answer20 viewsA: Fractional to decimal conversion in VBAGood morning Excel has a Worksheet.Function called Dec2bin. Already tried? You can also try (codegrapper.com): Function DecToBin$(ByVal n&) Do DecToBin = n Mod 2 & DecToBin n = n \ 2 Loop…