.
El significado de los parámetros son:
El vídeo que sigue muestra una explicación más detallada y gráfica de la macro presentada, recomiendo observar para una más fácil comprensión de la macro; suscribe a nuestra web desde la parte superior derecha de la página ingresando tu mail y a nuestro canal de You Tube para recibir en tu correo vídeos explicativos sobre macros interesantes, como por ejemplo formulario que crea un listado de todas las hojas para poder luego seleccionarlas, buscar en listbox mientras escribes en textbox, ordenar hojas libro excel por su nombre, conectar Excel con Access y muchos ejemplos más.
if (payload.eventType == ‘subscribe’) {
// Add code to handle subscribe event.
} else if (payload.eventType == ‘unsubscribe’) {
// Add code to handle unsubscribe event.
}
if (window.console) { // for debugging only
window.console.log(‘YT event: ‘, payload);
}
}
Código que se inserta en un userform
Sub SumIfs()
Application.ScreenUpdating = False
On Error Resume Next
DisplayAlerts = False
Dim uf As String
uf = Sheets(«Hoja1»).Range(«A» & Rows.Count).End(xlUp).Row
Cells(uf, «A») = Application.WorksheetFunction.SumIfs(Range(«A2» & «:A» & uf – 1), Range(«B2» & «:B» & uf – 1), «> 0», Range(«C2» & «:C» & uf – 1), «> 0»)
Cells(uf, «A»).NumberFormat = «#,##0.00»
MsgBox («Las ventas suman » & Format(Cells(uf, «A»), «#,##0.00»)), vbInformation, «AVISO»
DisplayAlerts = True
Application.ScreenUpdating = True
End Sub
Application.ScreenUpdating = False
On Error Resume Next
DisplayAlerts = False
Dim uf As String
uf = Sheets(«Hoja1»).Range(«A» & Rows.Count).End(xlUp).Row
Cells(uf, «A») = Application.WorksheetFunction.SumIfs(Range(«A2» & «:A» & uf – 1), Range(«B2» & «:B» & uf – 1), «> 0», Range(«C2» & «:C» & uf – 1), «> 0»)
Cells(uf, «A»).NumberFormat = «#,##0.00»
MsgBox («Las ventas suman » & Format(Cells(uf, «A»), «#,##0.00»)), vbInformation, «AVISO»
DisplayAlerts = True
Application.ScreenUpdating = True
End Sub
.
If this post was helpful INVITE ME A COFFEE and so help keep up the page, CLICK to download free example.
Si te gustó por favor compártelo con tus amigos
If you liked please share it with your friends