Hello
I at trying to make a macro that adds a formula into an excel worksheet by combining text and values from the worksheet.
This works but will be inserted as text:
Range("JusteretEndelig!A1") = "VLOOKUP(A1;[kIM" & Range("JusteretEndelig!g1") & ".xls]JusteretEndelig!$A$1:$G$11;7;FALSE)"...
Hello
Im trying to link to 125 other Excel files based on input from cells
Sub Link()
For i = 1 To ActiveWorkbook.Sheet.Rows.Count
Range("Sheet1!B(i)") = "D:\Documents and Settings\New Folder\Range" & ("Sheet1!B1") & Range("Udtrækrapportpakker!B1")
Next
End Sub
Im i totally off...
Hello
Im trying to link to 125 other Excel files based on input from cells
Sub Link()
For i = 1 To ActiveWorkbook.Sheet.Rows.Count
Range("Sheet1!B(i)") = "D:\Documents and Settings\New Folder\Range" & ("Sheet1!B1") & Range("Udtrækrapportpakker!B1")
Next
End Sub
Im i totally off...
Thanks to the help on this forum i have made the following:
Sub KlarTilUdskriftAlt()
Sheets("Nøgl").Visible = False
For i = 2 To ActiveWorkbook.Sheets.Count - 5
Set SheetMark = ActiveWorkbook.Sheets(i)
If SheetMark.Visible Then...
Hello
Can anyone help me out on this topic:
I got a large Excel workbook and need to run it on some slow computers.
Sheets("sheet1").Select
Selection.AutoFilter Field:=1, Criteria1:="="
But I like to be able to use autofilter without selecting the sheet. Something like...
Hello
I'm having 3 problems and hoping to find some help here. I'm trying to move info from one cell to another or the footer
1. Set Range("sheet1!A1") = Range("sheet2!b2")
Don't seem to work, any ideér's?
2. ActiveCell.FormulaR1C1 = "=sheet1!A1"
This result in A1 = "=sheet1'!A1'", any way...
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.