Posts by jradelmo • 16 points
3 posts
-
0
votes1
answer18
viewsA: Show some columns in Listbox
Assuming you are using Listbox, it will not be possible to directly add multiple ranges in the Rowsource property. You need to set your range before and scroll through it by adding the items inside…
-
0
votes1
answer53
viewsA: Macro that compares value and returns the difference between them
I left explained every detail in the code, see if it meets Download Sheet Example Public Sub CompararCarros() Dim Tipo As String Dim Cor As String Dim assento As Integer Dim ultimaLin, i, j, k As…
-
0
votes2
answers234
viewsA: Calling module inside another module in VBA Excel
Sub NewClientOS() 'criar ordem de serviço do cliente Dim sName As String Dim sCar As String Dim sTemp As String Dim ws As Worksheet: Set ws = Sheets("OS") …