Hi everyone!
A have a worksheet with the following data:
AZ5=4 , BA5=3, BB5=2, BC5=1
in column AP , I have a function in specific cells who copies the values from above cells:
AP42=3, AP47=3, AP52=2, AP57=1, AP60=1 and so on.. (about 100 cells copies data from cells above)
What I want: when I...
Hi!
I have a form in Access with a button with the code:
Private Sub cmdPrintToWord_Click()
Dim strSelect As String
Dim appWord As Word.Application
Dim appExcel As Excel.Application
Dim doc As Word.Document
Dim exlBook As Excel.Workbook
Dim exlSheet As Excel.Worksheet...
Hi! I have the code below :
Sub PopulareCelule()
Dim k As Integer
Dim l As Integer
k = ActiveCell.Column
l = ActiveCell.Row
For i = k To 35
If ActiveCell.Interior.ColorIndex = 4 Then
Cells(l, i).Value = "yes"
Else
Cells(l, i).Value = "no"
End If...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.