Posts by Andre Gorgonio • 16 points
2 posts
-
0
votes2
answers9649
viewsA: Automatically fill cells in excel using VBA
Try to define a range limit and from that subtract the values, something like that: Sub preencherCameras() Dim Limite, Linha, Coluna As Integer Limite = 4 Linha = Application.ActiveCell.Row 'Linha…
-
0
votes1
answer236
viewsA: Upload image in Excel from a directory
Try it with these adjustments: Public Function getImage(ByVal sCode As String) As String Dim sFile As String Dim oSheet As Worksheet Dim oCell As Range 'Declaração com nome diferente do código Dim…
excel-vbaanswered Andre Gorgonio 16