Bekijk de onderstaande video om te zien hoe je onze site als een web app op je startscherm installeert.
Opmerking: Deze functie is mogelijk niet beschikbaar in sommige browsers.
Privacywetgeving
Het is bij Helpmij.nl niet toegestaan om persoonsgegevens in een voorbeeld te plaatsen. Alle voorbeelden die persoonsgegevens bevatten zullen zonder opgaaf van reden verwijderd worden. In de vraag zal specifiek vermeld moeten worden dat het om fictieve namen gaat.
Sub tst()
With Application
.Calculation = xlCalculationManual
.EnableEvents = False
.ScreenUpdating = False
With Sheets("Blad2")
.AutoFilterMode = False
With .Range("A1:C" & .Cells(Rows.Count, "A").End(xlUp).Row)
.AutoFilter 2, [Blad1!B4].Value
End With
End With
.Calculation = xlCalc
.EnableEvents = True
.ScreenUpdating = True
End With
End Sub
Uit de losse pols (zonder vb is het gissen natuurlijk)
Code:Sub tst() With Application .Calculation = xlCalculationManual .EnableEvents = False .ScreenUpdating = False With Sheets("Blad2") .AutoFilterMode = False With .Range("A1:C" & .Cells(Rows.Count, "A").End(xlUp).Row) .AutoFilter 2, [Blad1!B4].Value End With End With .Calculation = xlCalc .EnableEvents = True .ScreenUpdating = True End With End Sub
Deze mag je verwijderen.
Deze mag je verwijderen.
zet je bestandje hier eens neer, want op deze manier komen we nergens.
.AutoFilter 2, [Blad1![COLOR="red"]C4[/COLOR]].Value
Sub Macro3()
'
' Macro3 Macro
' De macro is opgenomen op 22-1-2011 door HollandAccent Onderwijsgroep.
'
' Sneltoets: CTRL+z
'
With Application
.Calculation = xlCalculationManual
.EnableEvents = False
.ScreenUpdating = False
With Sheets("Blad2")
.AutoFilterMode = False
With .Range("A1:C" & .Cells(Rows.Count, "A").End(xlUp).Row)
.AutoFilter 2, [Blad1!C4].Value
End With
End With
.Calculation = xlCalculationAutomatic
.EnableEvents = True
.ScreenUpdating = True
End With
End Sub
Voor de volledigheid
Code:Sub Macro3() ' ' Macro3 Macro ' De macro is opgenomen op 22-1-2011 door HollandAccent Onderwijsgroep. ' ' Sneltoets: CTRL+z ' With Application .Calculation = xlCalculationManual .EnableEvents = False .ScreenUpdating = False With Sheets("Blad2") .AutoFilterMode = False With .Range("A1:C" & .Cells(Rows.Count, "A").End(xlUp).Row) .AutoFilter 2, [Blad1!C4].Value End With End With .Calculation = xlCalculationAutomatic .EnableEvents = True .ScreenUpdating = True End With End Sub
We gebruiken essentiële cookies om deze site te laten werken, en optionele cookies om de ervaring te verbeteren.