{"id":3308,"date":"2013-11-30T10:09:25","date_gmt":"2013-11-30T16:09:25","guid":{"rendered":"http:\/\/aplicaexcelcontable.com\/blog\/?p=3308"},"modified":"2024-12-06T21:01:50","modified_gmt":"2024-12-07T03:01:50","slug":"macros-escrita-vs-grabada","status":"publish","type":"post","link":"https:\/\/aplicaexcelcontable.com\/blog\/macros-escrita-vs-grabada.html","title":{"rendered":"Macros Escrita vs Grabada &#8211; Curso B\u00e1sico de VBA"},"content":{"rendered":"<h1 style=\"text-align: center;\">Macros Escrita vs Grabada<\/h1>\n<p style=\"text-align: justify;\">Comencemos con el articulo <strong>Programar en Excel &#8211; Macros Escrita vs Grabada:<\/strong><\/p>\n<p style=\"text-align: justify;\">Y que tal te pareci\u00f3 los \u00faltimos dos temas? Ya lograste ver el tema anterior? Si no lo has visto te invito a que lo veas <span style=\"color: rgb(0, 23, 255);\"><a href=\"https:\/\/aplicaexcelcontable.com\/blog\/programar-excel-codigos-la-macro-grabada-vba.html\" style=\"outline: none;\" target=\"_blank\"><strong>pulsando clic aqu\u00ed<\/strong><\/a><\/span>.<\/p>\n<p style=\"text-align: justify;\">Bien, una vez que termines vuelve a este tema y continua. Hoy vamos a conocer la diferencia que existe entre las Macros Escritas y las Grabadas.<\/p>\n<p style=\"text-align: justify;\">Por lo tanto, te invito a que te concentres y leas todo este tema sin interrupciones:<\/p>\n<h2 style=\"text-align: center;\">Contraste de Macros Escritas vs Grabadas<\/h2>\n<p><span><img decoding=\"async\" alt=\"Macros Escrita vs Grabada\" data-id=\"59900\" width=\"466\" data-init-width=\"625\" height=\"296\" data-init-height=\"397\" title=\"Macros escrita vs grabada\" loading=\"lazy\" src=\"https:\/\/aplicaexcelcontable.com\/blog\/wp-content\/uploads\/2013\/11\/Macros-escrita-vs-grabada.png\" data-width=\"466\" data-height=\"296\" style=\"aspect-ratio: auto 625 \/ 397;\"><\/span><\/p>\n<p style=\"text-align: justify;\">Llegados a este punto, interesa ver las diferencias entre las Macros Escritas manualmente y las Grabadas autom\u00e1ticamente.<\/p>\n<p style=\"text-align: justify;\">\u00bfQu\u00e9 fue lo que hicimos hasta aqu\u00ed? Hicimos una Macro que escribi\u00f3 el valor 1500 en la celda A1 de la Hoja1 de Excel. Pero recuerda que hicimos esta Macro 2 veces:<\/p>\n<ul>\n<li><span>La primera vez la escribimos manualmente.<\/span><\/li>\n<li><span>La segunda vez la grabamos directamente con la Grabadora de Macros.<\/span><\/li>\n<\/ul>\n<p style=\"text-align: justify;\">Denominemos Macros Escritas a la primera y Macros Grabada a la segunda para diferenciarlas. Aunque al ejecutarlas el resultado final fue el mismo, hay algunas diferencias que debemos estudiar.<\/p>\n<p style=\"text-align: justify;\">Para continuar, veamos una comparaci\u00f3n de ambos m\u00e9todos utilizados para crear la Macro que nos permitir\u00e1 revisar el proceso y obtener unas valiosas conclusiones.<\/p>\n<p style=\"text-align: justify;\">Y las diferencias son analizadas a continuaci\u00f3n:<\/p>\n<h3 style=\"text-align: center;\">Macro Escrita (Macros Escrita vs Grabada)<\/h3>\n<p style=\"text-align: justify;\"><strong>A) Como la hicimos:<\/strong><\/p>\n<ul>\n<li><span>Primeramente, creamos un Libro Excel llamado Libro1, abrimos el Editor de Macros con Alt + F11.<\/span><\/li>\n<li><span>En VBAProject (Libro1) hacemos doble clic en la Hoja1 (Hoja1). Escribimos el codigo de la Macro.<\/span><\/li>\n<\/ul>\n<p style=\"text-align: justify;\"><strong>B) El c\u00f3digo de la Macro:<\/strong><\/p>\n<ul>\n<li><span>Con Alt + F11 accedemos al Editor de Macros.<\/span><\/li>\n<li><span>El c\u00f3digo que escribimos manualmente fue el siguiente:Esta Macro escribe el valor 1500 en la celda A1Sub MiPrimeraMacro()Range(\u201cA1\u201d).Value=1500End SubRecuerda que este c\u00f3digo qued\u00f3 en<strong>VBAProject (Libro1) &gt; Hoja1 (Hoja1)<\/strong><\/span><\/li>\n<\/ul>\n<p style=\"text-align: justify;\"><strong>C) Ejecuci\u00f3n de la Macro:<\/strong><\/p>\n<ul>\n<li><span>Posicionados sobre cualquier l\u00ednea del c\u00f3digo anterior presionamos F5.<\/span><\/li>\n<li><span>Luego con Alt + F1 volvimos a la Hoja de Excel y comprobamos que en la celda A1 de la Hoja1 se escribi\u00f3 el valor 1500.<\/span><\/li>\n<\/ul>\n<h4 style=\"text-align: center;\">Macro Grabada (Macros Escrita vs Grabada)<\/h4>\n<p style=\"text-align: justify;\"><strong>A) Como la hicimos:<\/strong><\/p>\n<ul>\n<li><span>Para comenzar, utilizamos el mismo Libro1.xls. Encendimos la Grabadora de Macros desde el Men\u00fa \u00abHerramientas\u00bb, Macro \u00abGrabar Nueva Macro\u00bb.<\/span><\/li>\n<li><span>Luego nos posicionamos en la celda A1 de la Hoja1 y escribimos el valor 1500.<\/span><\/li>\n<li><span>Detuvimos la grabaci\u00f3n de la Macro desde el Men\u00fa \u00abHerramientas\u00bb, Macro \u00abDetener Grabaci\u00f3n\u00bb.<\/span><\/li>\n<\/ul>\n<p style=\"text-align: justify;\"><strong>B) El c\u00f3digo de la Macro:<\/strong><\/p>\n<ul>\n<li><span>Con Alt + F11 accedemos al Editor de Macros.<\/span><\/li>\n<li><span>El c\u00f3digo que se grab\u00f3 autom\u00e1ticamente fue el siguiente:Sub MiPrimeraMacro()MiPrimeraMacro MacroEsta Macro escribe el valor 1500 en la celda A1Range(\u201cA1\u201d).SelectActiveCell.FormulaR1C1 = \u201c1500\u201dRange(\u201cA2\u201d).SelectEnd SubRecuerda que este c\u00f3digo qued\u00f3 en<strong>VBAProject (Libro1) &gt; M\u00f3dulo1<\/strong><\/span><\/li>\n<\/ul>\n<p style=\"text-align: justify;\"><strong>C) Ejecuci\u00f3n de la Macro:<\/strong><\/p>\n<ul>\n<li><span>Para no confundirnos primero borramos el valor 1500 de la celda A1, Hoja1 (Lo hab\u00edamos escrito para grabar la Macro).<\/span><\/li>\n<li><span>Luego ejecutamos la Macro desde el Men\u00fa \u00abHerramientas\u00bb, Macro \u00abMacros\u00bb.<\/span><\/li>\n<li><span>Seleccionamos de la lista \u00abMiPrimeraMacro\u00bb y pulsamos \u00abAceptar\u00bb, de esta forma se volvi\u00f3 a escribir el valor 1500 en la celda A1 de la Hoja1.<\/span><\/li>\n<\/ul>\n<p style=\"text-align: justify;\">Continuamos en el tema siguiente continuamos. En el siguiente tema vamos a analizar la diferencia que existe realmente entre estos dos m\u00e9todos.<\/p>\n<p style=\"text-align: justify;\">Me gustar\u00eda saber que piensas de este articulo \u00abCurso B\u00e1sico de VBA &#8211; Macros Escrita vs Grabada \u00ab.<\/p>\n<p style=\"text-align: justify;\">Por lo tanto:<\/p>\n<p style=\"text-align: justify;\">D\u00e9jame tu comentario con dudas, cr\u00edticas constructivas y sugerencia en la secci\u00f3n de comentarios o bien en el Chat. Al mismo tiempo te invito a que visites nuestra pagina de Facebook, <span style=\"color: rgb(0, 23, 255);\"><a href=\"https:\/\/www.facebook.com\/AplicaExceContable\/\" target=\"_blank\" style=\"outline: none;\" rel=\"noopener\"><strong>pulsando clic aqu\u00ed<\/strong><\/a><\/span>.<\/p>\n<p style=\"\">Cualquier duda o pregunta, puedes escribirme directamente en la<span style=\"--tcb-text-highlight-color: rgb(237, 243, 13) !important;\">&nbsp;<\/span><a href=\"#comentario\" style=\"outline: none;\"><span style=\"--tcb-text-highlight-color: rgb(237, 243, 13) !important;\">secci\u00f3n de comentarios<\/span><\/a>, en la <a href=\"https:\/\/aplicaexcelcontable.com\/blog\/contacto\" target=\"_blank\" style=\"outline: none;\"><span style=\"--tcb-text-highlight-color: rgb(231, 100, 224) !important;\" data-text-highlight=\"bubble\">pagina del chat<\/span><\/a>, directamente en <span style=\"--tcb-text-highlight-color: rgb(30, 184, 76) !important;\">whatsapp<\/span> o bien al correo electr\u00f3nico rogerperez@aplicaexcelcontable.com.<span style=\"--tcb-text-highlight-color: transparent !important;\"><\/span><\/p>\n<p style=\"\">Te saluda,<span style=\"--tcb-text-highlight-color: transparent !important;\"><\/span><\/p>\n<p style=\"\"><strong>Roger Perez \u2013 Aplica Excel Contable<\/strong><\/p>\n<h2 style=\"text-align: center;\">Curso B\u00e1sico AEC<\/h2>\n<p><span style=\"width: 100%;\"><img loading=\"lazy\" decoding=\"async\" alt=\"Macros\" width=\"205\" height=\"102\" title=\"Sistema Contable V5.0\" data-id=\"33482\" src=\"\/\/aplicaexcelcontable.com\/blog\/wp-content\/uploads\/2018\/02\/Sistema-Contable-V5.0.png\" style=\"aspect-ratio: auto 431 \/ 214;\" data-width=\"205\" data-height=\"102\" data-init-width=\"431\" data-init-height=\"214\"><\/span><\/p>\n<p style=\"text-align: justify;\">En este Mini Curso aprender\u00e1s a <strong>Dise\u00f1ar tu Sistema Contable B\u00e1sico paso a paso, y mucho mas&#8230;<\/strong><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Macros Escrita vs Grabada Comencemos con el articulo Programar en Excel &#8211; Macros Escrita vs Grabada: Y que tal te pareci\u00f3 los \u00faltimos dos temas? Ya lograste ver el tema anterior? Si no lo has visto te invito a que lo veas pulsando clic aqu\u00ed. Bien, una vez que termines vuelve a este tema y [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":59900,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":"","tve_updated_post":"<div class=\"thrv_wrapper thrv_text_element\" data-tag=\"h1\"><h1 data-css=\"tve-u-16925aaf071\" style=\"text-align: center;\" class=\"\">Macros Escrita vs Grabada<\/h1><\/div><div class=\"thrv_wrapper thrv_contentbox_shortcode thrv-content-box\">\n<div class=\"tve-content-box-background\"><\/div>\n<div class=\"tve-cb tve_empty_dropzone\" data-css=\"tve-u-161e24145b1\"><div class=\"thrv_wrapper thrv_text_element tve_empty_dropzone\"><p data-css=\"tve-u-161e24145b3\" style=\"text-align: justify;\">Comencemos con el articulo <strong>Programar en Excel - Macros Escrita vs Grabada:<\/strong><\/p><p data-css=\"tve-u-161e24145b3\" style=\"text-align: justify;\">Y que tal te pareci\u00f3 los \u00faltimos dos temas? Ya lograste ver el tema anterior? Si no lo has visto te invito a que lo veas <span data-css=\"tve-u-161e24315ba\" style=\"color: rgb(0, 23, 255);\"><a href=\"https:\/\/aplicaexcelcontable.com\/blog\/programar-excel-codigos-la-macro-grabada-vba.html\" class=\"\" style=\"outline: none;\" target=\"_blank\"><strong>pulsando clic aqu\u00ed<\/strong><\/a><\/span>.<\/p><p data-css=\"tve-u-161e24145b3\" style=\"text-align: justify;\">Bien, una vez que termines vuelve a este tema y continua. Hoy vamos a conocer la diferencia que existe entre las Macros Escritas y las Grabadas.<\/p><p data-css=\"tve-u-161e24145b3\" style=\"text-align: justify;\">Por lo tanto, te invito a que te concentres y leas todo este tema sin interrupciones:<\/p><\/div><\/div>\n<\/div><div class=\"thrv_wrapper thrv_text_element\" data-tag=\"h2\"><h2 data-css=\"tve-u-161e2440be6\" style=\"text-align: center;\" class=\"\">Contraste de Macros Escritas vs Grabadas<\/h2><\/div><div class=\"thrv_wrapper tve_image_caption\" data-css=\"tve-u-1939f0f2ec6\" style=\"\"><span class=\"tve_image_frame\"><img class=\"tve_image wp-image-59900 tcb-moved-image\" alt=\"Macros Escrita vs Grabada\" data-id=\"59900\" width=\"466\" data-init-width=\"625\" height=\"296\" data-init-height=\"397\" title=\"Macros escrita vs grabada\" loading=\"lazy\" src=\"https:\/\/aplicaexcelcontable.com\/blog\/wp-content\/uploads\/2013\/11\/Macros-escrita-vs-grabada.png\" data-width=\"466\" data-height=\"296\" style=\"aspect-ratio: auto 625 \/ 397;\" data-css=\"tve-u-1939f0f4f83\"><\/span><\/div><div class=\"thrv_wrapper thrv_contentbox_shortcode thrv-content-box\">\n<div class=\"tve-content-box-background\"><\/div>\n<div class=\"tve-cb tve_empty_dropzone\" data-css=\"tve-u-161e2450d4d\"><div class=\"thrv_wrapper thrv_text_element tve_empty_dropzone\"><p data-css=\"tve-u-161e2450d4f\" style=\"text-align: justify;\">Llegados a este punto, interesa ver las diferencias entre las Macros Escritas manualmente y las Grabadas autom\u00e1ticamente.<\/p><p data-css=\"tve-u-161e2450d4f\" style=\"text-align: justify;\">\u00bfQu\u00e9 fue lo que hicimos hasta aqu\u00ed? Hicimos una Macro que escribi\u00f3 el valor 1500 en la celda A1 de la Hoja1 de Excel. Pero recuerda que hicimos esta Macro 2 veces:<\/p><\/div><\/div>\n<\/div><div class=\"thrv_wrapper thrv-styled_list\" data-icon-code=\"icon-check\" data-css=\"tve-u-16925be6b98\" style=\"\"><ul class=\"tcb-styled-list\"><li class=\"thrv-styled-list-item\"><div class=\"tcb-styled-list-icon\"><div class=\"thrv_wrapper thrv_icon tve_no_drag tcb-no-delete tcb-no-clone tcb-no-save tcb-icon-inherit-style\"><svg class=\"tcb-icon\" viewBox=\"0 0 32 32\" data-id=\"icon-check\" data-name=\"\"><path d=\"M29.333 10.267c0 0.4-0.133 0.8-0.533 1.2l-14.8 14.8c-0.267 0.267-0.667 0.4-1.067 0.4s-0.933-0.133-1.2-0.533l-2.4-2.267-6.267-6.267c-0.267-0.267-0.4-0.667-0.4-1.2s0.133-0.8 0.533-1.2l2.4-2.4c0.267-0.133 0.667-0.4 1.067-0.4s0.8 0.133 1.2 0.533l5.067 5.067 11.2-11.333c0.267-0.267 0.667-0.533 1.2-0.533 0.4 0 0.8 0.133 1.2 0.533l2.4 2.4c0.267 0.267 0.4 0.667 0.4 1.2z\"><\/path><\/svg><\/div><\/div><span class=\"thrv-advanced-inline-text tve_editable tcb-styled-list-icon-text tcb-no-delete tcb-no-save\" data-css=\"tve-u-16925bcbce0\"><div style=\"text-align: justify;\">La primera vez la escribimos manualmente.<\/div><\/span><\/li><li class=\"thrv-styled-list-item\"><div class=\"tcb-styled-list-icon\"><div class=\"thrv_wrapper thrv_icon tve_no_drag tcb-no-delete tcb-no-clone tcb-no-save tcb-icon-inherit-style\"><svg class=\"tcb-icon\" viewBox=\"0 0 32 32\" data-id=\"icon-check\" data-name=\"\"><path d=\"M29.333 10.267c0 0.4-0.133 0.8-0.533 1.2l-14.8 14.8c-0.267 0.267-0.667 0.4-1.067 0.4s-0.933-0.133-1.2-0.533l-2.4-2.267-6.267-6.267c-0.267-0.267-0.4-0.667-0.4-1.2s0.133-0.8 0.533-1.2l2.4-2.4c0.267-0.133 0.667-0.4 1.067-0.4s0.8 0.133 1.2 0.533l5.067 5.067 11.2-11.333c0.267-0.267 0.667-0.533 1.2-0.533 0.4 0 0.8 0.133 1.2 0.533l2.4 2.4c0.267 0.267 0.4 0.667 0.4 1.2z\"><\/path><\/svg><\/div><\/div><span class=\"thrv-advanced-inline-text tve_editable tcb-styled-list-icon-text tcb-no-delete tcb-no-save\" data-css=\"tve-u-16925bcbce0\"><div style=\"text-align: justify;\">La segunda vez la grabamos directamente con la Grabadora de Macros.<\/div><\/span><\/li><\/ul><\/div><div class=\"thrv_wrapper thrv_contentbox_shortcode thrv-content-box\" data-css=\"tve-u-1939f07e276\" style=\"\">\n<div class=\"tve-content-box-background\"><\/div>\n<div class=\"tve-cb tve_empty_dropzone\" data-css=\"tve-u-161e2450d4d\"><div class=\"thrv_wrapper thrv_text_element tve_empty_dropzone\"><p data-css=\"tve-u-161e2450d4f\" style=\"text-align: justify;\">Denominemos Macros Escritas a la primera y Macros Grabada a la segunda para diferenciarlas. Aunque al ejecutarlas el resultado final fue el mismo, hay algunas diferencias que debemos estudiar.<\/p><p data-css=\"tve-u-161e2450d4f\" style=\"text-align: justify;\">Para continuar, veamos una comparaci\u00f3n de ambos m\u00e9todos utilizados para crear la Macro que nos permitir\u00e1 revisar el proceso y obtener unas valiosas conclusiones.<\/p><p data-css=\"tve-u-161e2450d4f\" style=\"text-align: justify;\">Y las diferencias son analizadas a continuaci\u00f3n:<\/p><\/div><\/div>\n<\/div><div class=\"thrv_wrapper thrv_text_element\" data-tag=\"h3\"><h3 style=\"text-align: center;\" data-css=\"tve-u-16925df96fb\" class=\"\">Macro Escrita (Macros Escrita vs Grabada)<\/h3><\/div><div class=\"thrv_wrapper thrv_contentbox_shortcode thrv-content-box\" data-css=\"tve-u-1939f080baa\" style=\"\">\n<div class=\"tve-content-box-background\"><\/div>\n<div class=\"tve-cb tve_empty_dropzone\" data-css=\"tve-u-161e248f554\"><div class=\"thrv_wrapper thrv_text_element tve_empty_dropzone\"><p data-css=\"tve-u-161e248f557\" style=\"text-align: justify;\"><strong>A) Como la hicimos:<\/strong><\/p><\/div><\/div>\n<\/div><div class=\"thrv_wrapper thrv-styled_list\" data-icon-code=\"icon-check\" data-color=\"rgb(0, 0, 0)\" data-css=\"tve-u-161e24e509d\" style=\"\"><ul class=\"tcb-styled-list\"><li class=\"thrv-styled-list-item\"><div class=\"tcb-styled-list-icon\"><div class=\"thrv_wrapper thrv_icon tve_no_drag tcb-no-delete tcb-no-clone tcb-icon-inherit-style\" data-css=\"tve-u-161e24e3af9\"><svg class=\"tcb-icon\" viewBox=\"0 0 32 32\" data-name=\"checkcheck\">\n\n<path d=\"M29.333 10.267c0 0.4-0.133 0.8-0.533 1.2l-14.8 14.8c-0.267 0.267-0.667 0.4-1.067 0.4s-0.933-0.133-1.2-0.533l-2.4-2.267-6.267-6.267c-0.267-0.267-0.4-0.667-0.4-1.2s0.133-0.8 0.533-1.2l2.4-2.4c0.267-0.133 0.667-0.4 1.067-0.4s0.8 0.133 1.2 0.533l5.067 5.067 11.2-11.333c0.267-0.267 0.667-0.533 1.2-0.533 0.4 0 0.8 0.133 1.2 0.533l2.4 2.4c0.267 0.267 0.4 0.667 0.4 1.2z\"><\/path>\n<\/svg><\/div><\/div><span class=\"thrv-advanced-inline-text tve_editable tcb-styled-list-icon-text tcb-no-delete\" data-css=\"tve-u-169264cd263\"><div style=\"text-align: justify;\">Primeramente, creamos un Libro Excel llamado Libro1, abrimos el Editor de Macros con Alt + F11.<\/div><\/span><\/li><li class=\"thrv-styled-list-item\"><div class=\"tcb-styled-list-icon\"><div class=\"thrv_wrapper thrv_icon tve_no_drag tcb-no-delete tcb-no-clone tcb-icon-inherit-style\" data-css=\"tve-u-161e24e3afd\"><svg class=\"tcb-icon\" viewBox=\"0 0 32 32\" data-name=\"checkcheck\">\n\n<path d=\"M29.333 10.267c0 0.4-0.133 0.8-0.533 1.2l-14.8 14.8c-0.267 0.267-0.667 0.4-1.067 0.4s-0.933-0.133-1.2-0.533l-2.4-2.267-6.267-6.267c-0.267-0.267-0.4-0.667-0.4-1.2s0.133-0.8 0.533-1.2l2.4-2.4c0.267-0.133 0.667-0.4 1.067-0.4s0.8 0.133 1.2 0.533l5.067 5.067 11.2-11.333c0.267-0.267 0.667-0.533 1.2-0.533 0.4 0 0.8 0.133 1.2 0.533l2.4 2.4c0.267 0.267 0.4 0.667 0.4 1.2z\"><\/path>\n<\/svg><\/div><\/div><span class=\"thrv-advanced-inline-text tve_editable tcb-styled-list-icon-text tcb-no-delete\" data-css=\"tve-u-169264cd263\"><div style=\"text-align: justify;\">En VBAProject (Libro1) hacemos doble clic en la Hoja1 (Hoja1). Escribimos el codigo de la Macro.<\/div><\/span><\/li><\/ul><\/div><div class=\"thrv_wrapper thrv_contentbox_shortcode thrv-content-box\" data-css=\"tve-u-1939f087abc\" style=\"\">\n<div class=\"tve-content-box-background\"><\/div>\n<div class=\"tve-cb tve_empty_dropzone\" data-css=\"tve-u-161e24c7540\"><div class=\"thrv_wrapper thrv_text_element tve_empty_dropzone\"><p data-css=\"tve-u-161e24c7541\" style=\"text-align: justify;\"><strong>B) El c\u00f3digo de la Macro:<\/strong><\/p><\/div><\/div>\n<\/div><div class=\"thrv_wrapper thrv-styled_list\" data-icon-code=\"icon-check\" data-css=\"tve-u-161e24f6f49\" style=\"\"><ul class=\"tcb-styled-list\"><li class=\"thrv-styled-list-item\"><div class=\"tcb-styled-list-icon\"><div class=\"thrv_wrapper thrv_icon tve_no_drag tcb-no-delete tcb-no-clone tcb-icon-inherit-style\" data-css=\"tve-u-161e24f5a31\"><svg class=\"tcb-icon\" viewBox=\"0 0 32 32\" data-name=\"checkcheck\">\n\n<path d=\"M29.333 10.267c0 0.4-0.133 0.8-0.533 1.2l-14.8 14.8c-0.267 0.267-0.667 0.4-1.067 0.4s-0.933-0.133-1.2-0.533l-2.4-2.267-6.267-6.267c-0.267-0.267-0.4-0.667-0.4-1.2s0.133-0.8 0.533-1.2l2.4-2.4c0.267-0.133 0.667-0.4 1.067-0.4s0.8 0.133 1.2 0.533l5.067 5.067 11.2-11.333c0.267-0.267 0.667-0.533 1.2-0.533 0.4 0 0.8 0.133 1.2 0.533l2.4 2.4c0.267 0.267 0.4 0.667 0.4 1.2z\"><\/path>\n<\/svg><\/div><\/div><span class=\"thrv-advanced-inline-text tve_editable tcb-styled-list-icon-text tcb-no-delete\" data-css=\"tve-u-16926d2c2ed\"><div style=\"text-align: justify;\">Con Alt + F11 accedemos al Editor de Macros.<\/div><\/span><\/li><li class=\"thrv-styled-list-item\"><div class=\"tcb-styled-list-icon\"><div class=\"thrv_wrapper thrv_icon tve_no_drag tcb-no-delete tcb-no-clone tcb-icon-inherit-style\" data-css=\"tve-u-161e24f5a37\"><svg class=\"tcb-icon\" viewBox=\"0 0 32 32\" data-name=\"checkcheck\">\n\n<path d=\"M29.333 10.267c0 0.4-0.133 0.8-0.533 1.2l-14.8 14.8c-0.267 0.267-0.667 0.4-1.067 0.4s-0.933-0.133-1.2-0.533l-2.4-2.267-6.267-6.267c-0.267-0.267-0.4-0.667-0.4-1.2s0.133-0.8 0.533-1.2l2.4-2.4c0.267-0.133 0.667-0.4 1.067-0.4s0.8 0.133 1.2 0.533l5.067 5.067 11.2-11.333c0.267-0.267 0.667-0.533 1.2-0.533 0.4 0 0.8 0.133 1.2 0.533l2.4 2.4c0.267 0.267 0.4 0.667 0.4 1.2z\"><\/path>\n<\/svg><\/div><\/div><span class=\"thrv-advanced-inline-text tve_editable tcb-styled-list-icon-text tcb-no-delete\" data-css=\"tve-u-16926d2c2ed\"><div style=\"text-align: justify;\">El c\u00f3digo que escribimos manualmente fue el siguiente:<\/div><div style=\"text-align: justify;\">Esta Macro escribe el valor 1500 en la celda A1<\/div><div style=\"text-align: justify;\">Sub MiPrimeraMacro()<\/div><div style=\"text-align: justify;\">Range(\u201cA1\u201d).Value=1500<\/div><div style=\"text-align: justify;\">End Sub<\/div><div style=\"text-align: justify;\">Recuerda que este c\u00f3digo qued\u00f3 en<\/div><div style=\"text-align: justify;\"><strong>VBAProject (Libro1) &gt; Hoja1 (Hoja1)<\/strong><\/div><\/span><\/li><\/ul><\/div><div class=\"thrv_wrapper thrv_contentbox_shortcode thrv-content-box\">\n<div class=\"tve-content-box-background\"><\/div>\n<div class=\"tve-cb tve_empty_dropzone\" data-css=\"tve-u-161e2534cdc\"><div class=\"thrv_wrapper thrv_text_element tve_empty_dropzone\"><p data-css=\"tve-u-161e2534cdd\" style=\"text-align: justify;\"><strong>C) Ejecuci\u00f3n de la Macro:<\/strong><\/p><\/div><\/div>\n<\/div><div class=\"thrv_wrapper thrv-styled_list\" data-icon-code=\"icon-check\" data-color=\"rgb(0, 0, 0)\" data-css=\"tve-u-161e2566543\" style=\"\"><ul class=\"tcb-styled-list\"><li class=\"thrv-styled-list-item\"><div class=\"tcb-styled-list-icon\"><div class=\"thrv_wrapper thrv_icon tve_no_drag tcb-no-delete tcb-no-clone tcb-icon-inherit-style\" data-css=\"tve-u-161e2564912\"><svg class=\"tcb-icon\" viewBox=\"0 0 32 32\" data-name=\"checkcheck\">\n\n<path d=\"M29.333 10.267c0 0.4-0.133 0.8-0.533 1.2l-14.8 14.8c-0.267 0.267-0.667 0.4-1.067 0.4s-0.933-0.133-1.2-0.533l-2.4-2.267-6.267-6.267c-0.267-0.267-0.4-0.667-0.4-1.2s0.133-0.8 0.533-1.2l2.4-2.4c0.267-0.133 0.667-0.4 1.067-0.4s0.8 0.133 1.2 0.533l5.067 5.067 11.2-11.333c0.267-0.267 0.667-0.533 1.2-0.533 0.4 0 0.8 0.133 1.2 0.533l2.4 2.4c0.267 0.267 0.4 0.667 0.4 1.2z\"><\/path>\n<\/svg><\/div><\/div><span class=\"thrv-advanced-inline-text tve_editable tcb-styled-list-icon-text tcb-no-delete\" data-css=\"tve-u-1692714f97d\"><div style=\"text-align: justify;\">Posicionados sobre cualquier l\u00ednea del c\u00f3digo anterior presionamos F5.<\/div><\/span><\/li><li class=\"thrv-styled-list-item\"><div class=\"tcb-styled-list-icon\"><div class=\"thrv_wrapper thrv_icon tve_no_drag tcb-no-delete tcb-no-clone tcb-icon-inherit-style\" data-css=\"tve-u-161e256bbd7\"><svg class=\"tcb-icon\" viewBox=\"0 0 32 32\" data-name=\"checkcheck\">\n\n<path d=\"M29.333 10.267c0 0.4-0.133 0.8-0.533 1.2l-14.8 14.8c-0.267 0.267-0.667 0.4-1.067 0.4s-0.933-0.133-1.2-0.533l-2.4-2.267-6.267-6.267c-0.267-0.267-0.4-0.667-0.4-1.2s0.133-0.8 0.533-1.2l2.4-2.4c0.267-0.133 0.667-0.4 1.067-0.4s0.8 0.133 1.2 0.533l5.067 5.067 11.2-11.333c0.267-0.267 0.667-0.533 1.2-0.533 0.4 0 0.8 0.133 1.2 0.533l2.4 2.4c0.267 0.267 0.4 0.667 0.4 1.2z\"><\/path>\n<\/svg><\/div><\/div><span class=\"thrv-advanced-inline-text tve_editable tcb-styled-list-icon-text tcb-no-delete\" data-css=\"tve-u-1692714f97d\"><div style=\"text-align: justify;\">Luego con Alt + F1 volvimos a la Hoja de Excel y comprobamos que en la celda A1 de la Hoja1 se escribi\u00f3 el valor 1500.<\/div><\/span><\/li><\/ul><\/div><div class=\"thrv_wrapper thrv_text_element\" data-tag=\"h4\"><h4 style=\"text-align: center;\" data-css=\"tve-u-169272145da\" class=\"\">Macro Grabada (Macros Escrita vs Grabada)<\/h4><\/div><div class=\"thrv_wrapper thrv_contentbox_shortcode thrv-content-box\">\n<div class=\"tve-content-box-background\"><\/div>\n<div class=\"tve-cb tve_empty_dropzone\" data-css=\"tve-u-161e2591a13\"><div class=\"thrv_wrapper thrv_text_element tve_empty_dropzone\"><p data-css=\"tve-u-161e2591a15\" style=\"text-align: justify;\"><strong>A) Como la hicimos:<\/strong><\/p><\/div><\/div>\n<\/div><div class=\"thrv_wrapper thrv-styled_list\" data-icon-code=\"icon-check\" data-color=\"rgb(0, 0, 0)\" data-css=\"tve-u-161e258d5fa\" style=\"\"><ul class=\"tcb-styled-list\"><li class=\"thrv-styled-list-item\"><div class=\"tcb-styled-list-icon\"><div class=\"thrv_wrapper thrv_icon tve_no_drag tcb-no-delete tcb-no-clone tcb-icon-inherit-style\" data-css=\"tve-u-161e258c15e\"><svg class=\"tcb-icon\" viewBox=\"0 0 32 32\" data-name=\"checkcheck\">\n\n<path d=\"M29.333 10.267c0 0.4-0.133 0.8-0.533 1.2l-14.8 14.8c-0.267 0.267-0.667 0.4-1.067 0.4s-0.933-0.133-1.2-0.533l-2.4-2.267-6.267-6.267c-0.267-0.267-0.4-0.667-0.4-1.2s0.133-0.8 0.533-1.2l2.4-2.4c0.267-0.133 0.667-0.4 1.067-0.4s0.8 0.133 1.2 0.533l5.067 5.067 11.2-11.333c0.267-0.267 0.667-0.533 1.2-0.533 0.4 0 0.8 0.133 1.2 0.533l2.4 2.4c0.267 0.267 0.4 0.667 0.4 1.2z\"><\/path>\n<\/svg><\/div><\/div><span class=\"thrv-advanced-inline-text tve_editable tcb-styled-list-icon-text tcb-no-delete\" data-css=\"tve-u-1692726eab4\"><div style=\"text-align: justify;\">Para comenzar, utilizamos el mismo Libro1.xls. Encendimos la Grabadora de Macros desde el Men\u00fa \"Herramientas\", Macro \"Grabar Nueva Macro\".<\/div><\/span><\/li><li class=\"thrv-styled-list-item\"><div class=\"tcb-styled-list-icon\"><div class=\"thrv_wrapper thrv_icon tve_no_drag tcb-no-delete tcb-no-clone tcb-icon-inherit-style\" data-css=\"tve-u-161e258c164\"><svg class=\"tcb-icon\" viewBox=\"0 0 32 32\" data-name=\"checkcheck\">\n\n<path d=\"M29.333 10.267c0 0.4-0.133 0.8-0.533 1.2l-14.8 14.8c-0.267 0.267-0.667 0.4-1.067 0.4s-0.933-0.133-1.2-0.533l-2.4-2.267-6.267-6.267c-0.267-0.267-0.4-0.667-0.4-1.2s0.133-0.8 0.533-1.2l2.4-2.4c0.267-0.133 0.667-0.4 1.067-0.4s0.8 0.133 1.2 0.533l5.067 5.067 11.2-11.333c0.267-0.267 0.667-0.533 1.2-0.533 0.4 0 0.8 0.133 1.2 0.533l2.4 2.4c0.267 0.267 0.4 0.667 0.4 1.2z\"><\/path>\n<\/svg><\/div><\/div><span class=\"thrv-advanced-inline-text tve_editable tcb-styled-list-icon-text tcb-no-delete\" data-css=\"tve-u-1692726eab4\"><div style=\"text-align: justify;\">Luego nos posicionamos en la celda A1 de la Hoja1 y escribimos el valor 1500.<\/div><\/span><\/li><li class=\"thrv-styled-list-item\"><div class=\"tcb-styled-list-icon\"><div class=\"thrv_wrapper thrv_icon tve_no_drag tcb-no-delete tcb-no-clone tcb-icon-inherit-style\" data-css=\"tve-u-161e25bda8b\"><svg class=\"tcb-icon\" viewBox=\"0 0 32 32\" data-name=\"checkcheck\">\n\n<path d=\"M29.333 10.267c0 0.4-0.133 0.8-0.533 1.2l-14.8 14.8c-0.267 0.267-0.667 0.4-1.067 0.4s-0.933-0.133-1.2-0.533l-2.4-2.267-6.267-6.267c-0.267-0.267-0.4-0.667-0.4-1.2s0.133-0.8 0.533-1.2l2.4-2.4c0.267-0.133 0.667-0.4 1.067-0.4s0.8 0.133 1.2 0.533l5.067 5.067 11.2-11.333c0.267-0.267 0.667-0.533 1.2-0.533 0.4 0 0.8 0.133 1.2 0.533l2.4 2.4c0.267 0.267 0.4 0.667 0.4 1.2z\"><\/path>\n<\/svg><\/div><\/div><span class=\"thrv-advanced-inline-text tve_editable tcb-styled-list-icon-text tcb-no-delete\" data-css=\"tve-u-1692726eab4\"><div style=\"text-align: justify;\">Detuvimos la grabaci\u00f3n de la Macro desde el Men\u00fa \"Herramientas\", Macro \"Detener Grabaci\u00f3n\".<\/div><\/span><\/li><\/ul><\/div><div class=\"thrv_wrapper thrv_contentbox_shortcode thrv-content-box\">\n<div class=\"tve-content-box-background\"><\/div>\n<div class=\"tve-cb tve_empty_dropzone\" data-css=\"tve-u-161e25d4027\"><div class=\"thrv_wrapper thrv_text_element tve_empty_dropzone\"><p data-css=\"tve-u-161e25d4028\" style=\"text-align: justify;\"><strong>B) El c\u00f3digo de la Macro:<\/strong><\/p><\/div><\/div>\n<\/div><div class=\"thrv_wrapper thrv-styled_list\" data-icon-code=\"icon-check\" data-color=\"rgb(0, 0, 0)\" data-css=\"tve-u-161e25e5c08\"><ul class=\"tcb-styled-list\"><li class=\"thrv-styled-list-item\"><div class=\"tcb-styled-list-icon\"><div class=\"thrv_wrapper thrv_icon tve_no_drag tcb-no-delete tcb-no-clone tcb-icon-inherit-style\" data-css=\"tve-u-161e25e3e6d\"><svg class=\"tcb-icon\" viewBox=\"0 0 32 32\" data-name=\"checkcheck\">\n\n<path d=\"M29.333 10.267c0 0.4-0.133 0.8-0.533 1.2l-14.8 14.8c-0.267 0.267-0.667 0.4-1.067 0.4s-0.933-0.133-1.2-0.533l-2.4-2.267-6.267-6.267c-0.267-0.267-0.4-0.667-0.4-1.2s0.133-0.8 0.533-1.2l2.4-2.4c0.267-0.133 0.667-0.4 1.067-0.4s0.8 0.133 1.2 0.533l5.067 5.067 11.2-11.333c0.267-0.267 0.667-0.533 1.2-0.533 0.4 0 0.8 0.133 1.2 0.533l2.4 2.4c0.267 0.267 0.4 0.667 0.4 1.2z\"><\/path>\n<\/svg><\/div><\/div><span class=\"thrv-advanced-inline-text tve_editable tcb-styled-list-icon-text tcb-no-delete\" data-css=\"tve-u-1692732a639\"><div style=\"text-align: justify;\">Con Alt + F11 accedemos al Editor de Macros.<\/div><\/span><\/li><li class=\"thrv-styled-list-item\"><div class=\"tcb-styled-list-icon\"><div class=\"thrv_wrapper thrv_icon tve_no_drag tcb-no-delete tcb-no-clone tcb-icon-inherit-style\" data-css=\"tve-u-161e25e3e73\"><svg class=\"tcb-icon\" viewBox=\"0 0 32 32\" data-name=\"checkcheck\">\n\n<path d=\"M29.333 10.267c0 0.4-0.133 0.8-0.533 1.2l-14.8 14.8c-0.267 0.267-0.667 0.4-1.067 0.4s-0.933-0.133-1.2-0.533l-2.4-2.267-6.267-6.267c-0.267-0.267-0.4-0.667-0.4-1.2s0.133-0.8 0.533-1.2l2.4-2.4c0.267-0.133 0.667-0.4 1.067-0.4s0.8 0.133 1.2 0.533l5.067 5.067 11.2-11.333c0.267-0.267 0.667-0.533 1.2-0.533 0.4 0 0.8 0.133 1.2 0.533l2.4 2.4c0.267 0.267 0.4 0.667 0.4 1.2z\"><\/path>\n<\/svg><\/div><\/div><span class=\"thrv-advanced-inline-text tve_editable tcb-styled-list-icon-text tcb-no-delete\" data-css=\"tve-u-1692732a639\"><div style=\"text-align: justify;\">El c\u00f3digo que se grab\u00f3 autom\u00e1ticamente fue el siguiente:<\/div><div style=\"text-align: justify;\">Sub MiPrimeraMacro()<\/div><div style=\"text-align: justify;\">MiPrimeraMacro Macro<\/div><div style=\"text-align: justify;\">Esta Macro escribe el valor 1500 en la celda A1<\/div><div style=\"text-align: justify;\">Range(\u201cA1\u201d).Select<\/div><div style=\"text-align: justify;\">ActiveCell.FormulaR1C1 = \u201c1500\u201d<\/div><div style=\"text-align: justify;\">Range(\u201cA2\u201d).Select<\/div><div style=\"text-align: justify;\">End Sub<\/div><div style=\"text-align: justify;\">Recuerda que este c\u00f3digo qued\u00f3 en<\/div><div style=\"text-align: justify;\"><strong>VBAProject (Libro1) &gt; M\u00f3dulo1<\/strong><\/div><\/span><\/li><\/ul><\/div><div class=\"thrv_wrapper thrv_contentbox_shortcode thrv-content-box\">\n<div class=\"tve-content-box-background\"><\/div>\n<div class=\"tve-cb tve_empty_dropzone\" data-css=\"tve-u-161e2616856\"><div class=\"thrv_wrapper thrv_text_element tve_empty_dropzone\"><p data-css=\"tve-u-161e2616858\" style=\"text-align: justify;\"><strong>C) Ejecuci\u00f3n de la Macro:<\/strong><\/p><\/div><\/div>\n<\/div><div class=\"thrv_wrapper thrv-styled_list\" data-icon-code=\"icon-check\" data-color=\"rgb(0, 0, 0)\" data-css=\"tve-u-161e26394b1\"><ul class=\"tcb-styled-list\"><li class=\"thrv-styled-list-item\"><div class=\"tcb-styled-list-icon\"><div class=\"thrv_wrapper thrv_icon tve_no_drag tcb-no-delete tcb-no-clone tcb-icon-inherit-style\" data-css=\"tve-u-161e26377d3\"><svg class=\"tcb-icon\" viewBox=\"0 0 32 32\" data-name=\"checkcheck\">\n\n<path d=\"M29.333 10.267c0 0.4-0.133 0.8-0.533 1.2l-14.8 14.8c-0.267 0.267-0.667 0.4-1.067 0.4s-0.933-0.133-1.2-0.533l-2.4-2.267-6.267-6.267c-0.267-0.267-0.4-0.667-0.4-1.2s0.133-0.8 0.533-1.2l2.4-2.4c0.267-0.133 0.667-0.4 1.067-0.4s0.8 0.133 1.2 0.533l5.067 5.067 11.2-11.333c0.267-0.267 0.667-0.533 1.2-0.533 0.4 0 0.8 0.133 1.2 0.533l2.4 2.4c0.267 0.267 0.4 0.667 0.4 1.2z\"><\/path>\n<\/svg><\/div><\/div><span class=\"thrv-advanced-inline-text tve_editable tcb-styled-list-icon-text tcb-no-delete\" data-css=\"tve-u-1692737d8fe\"><div style=\"text-align: justify;\">Para no confundirnos primero borramos el valor 1500 de la celda A1, Hoja1 (Lo hab\u00edamos escrito para grabar la Macro).<\/div><\/span><\/li><li class=\"thrv-styled-list-item\"><div class=\"tcb-styled-list-icon\"><div class=\"thrv_wrapper thrv_icon tve_no_drag tcb-no-delete tcb-no-clone tcb-icon-inherit-style\" data-css=\"tve-u-161e2640a72\"><svg class=\"tcb-icon\" viewBox=\"0 0 32 32\" data-name=\"checkcheck\">\n\n<path d=\"M29.333 10.267c0 0.4-0.133 0.8-0.533 1.2l-14.8 14.8c-0.267 0.267-0.667 0.4-1.067 0.4s-0.933-0.133-1.2-0.533l-2.4-2.267-6.267-6.267c-0.267-0.267-0.4-0.667-0.4-1.2s0.133-0.8 0.533-1.2l2.4-2.4c0.267-0.133 0.667-0.4 1.067-0.4s0.8 0.133 1.2 0.533l5.067 5.067 11.2-11.333c0.267-0.267 0.667-0.533 1.2-0.533 0.4 0 0.8 0.133 1.2 0.533l2.4 2.4c0.267 0.267 0.4 0.667 0.4 1.2z\"><\/path>\n<\/svg><\/div><\/div><span class=\"thrv-advanced-inline-text tve_editable tcb-styled-list-icon-text tcb-no-delete\" data-css=\"tve-u-1692737d8fe\"><div style=\"text-align: justify;\">Luego ejecutamos la Macro desde el Men\u00fa \"Herramientas\", Macro \"Macros\".<\/div><\/span><\/li><li class=\"thrv-styled-list-item\"><div class=\"tcb-styled-list-icon\"><div class=\"thrv_wrapper thrv_icon tve_no_drag tcb-no-delete tcb-no-clone tcb-icon-inherit-style\" data-css=\"tve-u-161e264c685\"><svg class=\"tcb-icon\" viewBox=\"0 0 32 32\" data-name=\"checkcheck\">\n\n<path d=\"M29.333 10.267c0 0.4-0.133 0.8-0.533 1.2l-14.8 14.8c-0.267 0.267-0.667 0.4-1.067 0.4s-0.933-0.133-1.2-0.533l-2.4-2.267-6.267-6.267c-0.267-0.267-0.4-0.667-0.4-1.2s0.133-0.8 0.533-1.2l2.4-2.4c0.267-0.133 0.667-0.4 1.067-0.4s0.8 0.133 1.2 0.533l5.067 5.067 11.2-11.333c0.267-0.267 0.667-0.533 1.2-0.533 0.4 0 0.8 0.133 1.2 0.533l2.4 2.4c0.267 0.267 0.4 0.667 0.4 1.2z\"><\/path>\n<\/svg><\/div><\/div><span class=\"thrv-advanced-inline-text tve_editable tcb-styled-list-icon-text tcb-no-delete\" data-css=\"tve-u-1692737d8fe\"><div style=\"text-align: justify;\">Seleccionamos de la lista \"MiPrimeraMacro\" y pulsamos \"Aceptar\", de esta forma se volvi\u00f3 a escribir el valor 1500 en la celda A1 de la Hoja1.<\/div><\/span><\/li><\/ul><\/div><div class=\"thrv_wrapper thrv_contentbox_shortcode thrv-content-box\">\n<div class=\"tve-content-box-background\"><\/div>\n<div class=\"tve-cb tve_empty_dropzone\" data-css=\"tve-u-161e2677811\"><div class=\"thrv_wrapper thrv_text_element tve_empty_dropzone\"><p data-css=\"tve-u-161e2677812\" style=\"text-align: justify;\">Continuamos en el tema siguiente continuamos. En el siguiente tema vamos a analizar la diferencia que existe realmente entre estos dos m\u00e9todos.<\/p><\/div><\/div>\n<\/div><div class=\"thrv_wrapper thrv-button tve_ea_thrive_animation tve_anim_appear\" data-css=\"tve-u-169274623bb\" data-button-style=\"tcb-saved-button-template-28\" style=\"\" id=\"tema2\" data-tcb_hover_state_parent=\"\">\n<a href=\"http:\/\/aplicaexcelcontable.com\/blog\/programar-en-excel-diferencia-entre-macro-escrita-y-grabada.html\" class=\"tcb-button-link tve_evt_manager_listen tve_et_tve-viewport\" data-tcb-events=\"__TCB_EVENT_[{&quot;t&quot;:&quot;tve-viewport&quot;,&quot;config&quot;:{&quot;anim&quot;:&quot;appear&quot;,&quot;loop&quot;:1},&quot;a&quot;:&quot;thrive_animation&quot;}]_TNEVE_BCT__\" target=\"_blank\">\n<span class=\"tcb-button-texts\"><span class=\"tcb-button-text thrv-inline-text\" data-css=\"tve-u-169274623d8\"><strong>Pulsa clic aqu\u00ed P\/Ver el siguiente Tema<\/strong><\/span><\/span>\n<\/a>\n<\/div><div class=\"thrv_wrapper thrv_contentbox_shortcode thrv-content-box\">\n<div class=\"tve-content-box-background\"><\/div>\n<div class=\"tve-cb tve_empty_dropzone\" data-css=\"tve-u-161e26b4bec\"><div class=\"thrv_wrapper thrv_text_element tve_empty_dropzone\"><p data-css=\"tve-u-161e26b4bee\" style=\"text-align: justify;\">Me gustar\u00eda saber que piensas de este articulo \"Curso B\u00e1sico de VBA - Macros Escrita vs Grabada \".<\/p><p data-css=\"tve-u-161e26b4bee\" style=\"text-align: justify;\">Por lo tanto:<\/p><p data-css=\"tve-u-161e26b4bee\" style=\"text-align: justify;\">D\u00e9jame tu comentario con dudas, cr\u00edticas constructivas y sugerencia en la secci\u00f3n de comentarios o bien en el Chat. Al mismo tiempo te invito a que visites nuestra pagina de Facebook, <span data-css=\"tve-u-161e26c7757\" style=\"color: rgb(0, 23, 255);\"><a href=\"https:\/\/www.facebook.com\/AplicaExceContable\/\" target=\"_blank\" class=\"\" style=\"outline: none;\"><strong>pulsando clic aqu\u00ed<\/strong><\/a><\/span>.<\/p><\/div><\/div>\n<\/div><div class=\"thrv_wrapper thrv_contentbox_shortcode thrv-content-box tve-elem-default-pad\" data-css=\"tve-u-1939f0a7e74\" style=\"\">\n\t<div class=\"tve-content-box-background\"><\/div>\n\t<div class=\"tve-cb\" style=\"\" data-css=\"tve-u-1939f0a7e72\"><div class=\"thrv_wrapper thrv_text_element tcb-highlight-added\">\t<p style=\"\">Cualquier duda o pregunta, puedes escribirme directamente en la<span style=\"--tcb-text-highlight-color: rgb(237, 243, 13) !important;\" data-css=\"tve-u-1939f0a7e75\">&nbsp;<\/span><a href=\"#comentario\" class=\"tve-jump-scroll\" style=\"outline: none;\"><span style=\"--tcb-text-highlight-color: rgb(237, 243, 13) !important;\" data-css=\"tve-u-1939f0a7e76\">secci\u00f3n de comentarios<\/span><\/a>, en la <a href=\"https:\/\/aplicaexcelcontable.com\/blog\/contacto\" target=\"_blank\" class=\"\" style=\"outline: none;\"><span style=\"--tcb-text-highlight-color: rgb(231, 100, 224) !important;\" data-css=\"tve-u-1939f0a7e77\" data-text-highlight=\"bubble\">pagina del chat<\/span><\/a>, directamente en <span style=\"--tcb-text-highlight-color: rgb(30, 184, 76) !important;\" data-css=\"tve-u-1939f0a7e78\">whatsapp<\/span> o bien al correo electr\u00f3nico rogerperez@aplicaexcelcontable.com.<span style=\"--tcb-text-highlight-color: transparent !important;\" data-css=\"tve-u-1939f0a7e79\"><\/span><\/p><p style=\"\">Te saluda,<span style=\"--tcb-text-highlight-color: transparent !important;\"><\/span><\/p><p style=\"\"><strong>Roger Perez \u2013 Aplica Excel Contable<\/strong><\/p><\/div><\/div>\n<\/div><div class=\"thrv_wrapper thrv_contentbox_shortcode thrv-content-box\" data-css=\"tve-u-161e27408d3\">\n<div class=\"tve-content-box-background\" data-css=\"tve-u-161e27408d8\"><\/div>\n<div class=\"tve-cb tve_empty_dropzone\" data-css=\"tve-u-161e27408d2\"><div class=\"thrv_wrapper thrv_text_element\" data-tag=\"h2\"><h2 data-css=\"tve-u-161e27408d1\" style=\"text-align: center;\" class=\"\">Curso B\u00e1sico AEC<\/h2><\/div><div class=\"thrv_wrapper tve_image_caption\" data-css=\"tve-u-161e27408d9\" style=\"\"><span class=\"tve_image_frame\" style=\"width: 100%;\"><img loading=\"lazy\" decoding=\"async\" class=\"tve_image wp-image-33482\" alt=\"Macros\" width=\"205\" height=\"102\" title=\"Sistema Contable V5.0\" data-id=\"33482\" src=\"\/\/aplicaexcelcontable.com\/blog\/wp-content\/uploads\/2018\/02\/Sistema-Contable-V5.0.png\" style=\"aspect-ratio: auto 431 \/ 214;\" data-width=\"205\" data-height=\"102\" data-init-width=\"431\" data-init-height=\"214\" data-css=\"tve-u-1939f0417de\"><\/span><\/div><div class=\"thrv_wrapper thrv_contentbox_shortcode thrv-content-box\">\n<div class=\"tve-content-box-background\"><\/div>\n<div class=\"tve-cb tve_empty_dropzone\" data-css=\"tve-u-161e27408d5\"><div class=\"thrv_wrapper thrv_text_element tve_empty_dropzone\" data-css=\"tve-u-161e27408d0\"><p data-css=\"tve-u-161e27408d6\" style=\"text-align: justify;\">En este Mini Curso aprender\u00e1s a <strong>Dise\u00f1ar tu Sistema Contable B\u00e1sico paso a paso, y mucho mas...<\/strong><\/p><\/div><div class=\"thrv_wrapper thrv-button\" data-css=\"tve-u-161e27408d7\" data-tcb_hover_state_parent=\"\" style=\"\">\n<a href=\"https:\/\/aplicaexcelcontable.com\/blog\/curso-sistema-c\" class=\"tcb-button-link\">\n<span class=\"tcb-button-texts\"><span class=\"tcb-button-text thrv-inline-text\" data-css=\"tve-u-161e27408db\"><strong>Clic aqu\u00ed para ver el Video 1<\/strong><\/span><\/span>\n<\/a>\n<\/div><\/div>\n<\/div><\/div>\n<\/div>","tve_custom_css":"@media (min-width: 300px){[data-css=\"tve-u-161e26c7757\"] { color: rgb(0, 23, 255) !important; }[data-css=\"tve-u-161e264c685\"] { color: rgb(0, 0, 0); }[data-css=\"tve-u-161e2640a72\"] { color: rgb(0, 0, 0); }:not(#tve) [data-css=\"tve-u-161e26394b1\"] p, :not(#tve) [data-css=\"tve-u-161e26394b1\"] li, :not(#tve) [data-css=\"tve-u-161e26394b1\"] blockquote, :not(#tve) [data-css=\"tve-u-161e26394b1\"] address, :not(#tve) [data-css=\"tve-u-161e26394b1\"] h1, :not(#tve) [data-css=\"tve-u-161e26394b1\"] h2, :not(#tve) [data-css=\"tve-u-161e26394b1\"] h3, :not(#tve) [data-css=\"tve-u-161e26394b1\"] h4, :not(#tve) [data-css=\"tve-u-161e26394b1\"] h5, :not(#tve) [data-css=\"tve-u-161e26394b1\"] h6 { color: rgb(0, 0, 0); }[data-css=\"tve-u-161e26377d3\"] { color: rgb(0, 0, 0); }:not(#tve) [data-css=\"tve-u-161e25e5c08\"] p, :not(#tve) [data-css=\"tve-u-161e25e5c08\"] li, :not(#tve) [data-css=\"tve-u-161e25e5c08\"] blockquote, :not(#tve) [data-css=\"tve-u-161e25e5c08\"] address, :not(#tve) [data-css=\"tve-u-161e25e5c08\"] h1, :not(#tve) [data-css=\"tve-u-161e25e5c08\"] h2, :not(#tve) [data-css=\"tve-u-161e25e5c08\"] h3, :not(#tve) [data-css=\"tve-u-161e25e5c08\"] h4, :not(#tve) [data-css=\"tve-u-161e25e5c08\"] h5, :not(#tve) [data-css=\"tve-u-161e25e5c08\"] h6 { color: rgb(0, 0, 0); }[data-css=\"tve-u-161e25e3e73\"] { color: rgb(0, 0, 0); }[data-css=\"tve-u-161e25e3e6d\"] { color: rgb(0, 0, 0); }[data-css=\"tve-u-161e25bda8b\"] { color: rgb(0, 0, 0); }:not(#tve) [data-css=\"tve-u-161e258d5fa\"] p, :not(#tve) [data-css=\"tve-u-161e258d5fa\"] li, :not(#tve) [data-css=\"tve-u-161e258d5fa\"] blockquote, :not(#tve) [data-css=\"tve-u-161e258d5fa\"] address, :not(#tve) [data-css=\"tve-u-161e258d5fa\"] h1, :not(#tve) [data-css=\"tve-u-161e258d5fa\"] h2, :not(#tve) [data-css=\"tve-u-161e258d5fa\"] h3, :not(#tve) [data-css=\"tve-u-161e258d5fa\"] h4, :not(#tve) [data-css=\"tve-u-161e258d5fa\"] h5, :not(#tve) [data-css=\"tve-u-161e258d5fa\"] h6 { color: rgb(0, 0, 0); }[data-css=\"tve-u-161e258c164\"] { color: rgb(0, 0, 0); }[data-css=\"tve-u-161e258c15e\"] { color: rgb(0, 0, 0); }[data-css=\"tve-u-161e256bbd7\"] { color: rgb(0, 0, 0); }:not(#tve) [data-css=\"tve-u-161e2566543\"] p, :not(#tve) [data-css=\"tve-u-161e2566543\"] li, :not(#tve) [data-css=\"tve-u-161e2566543\"] blockquote, :not(#tve) [data-css=\"tve-u-161e2566543\"] address, :not(#tve) [data-css=\"tve-u-161e2566543\"] h1, :not(#tve) [data-css=\"tve-u-161e2566543\"] h2, :not(#tve) [data-css=\"tve-u-161e2566543\"] h3, :not(#tve) [data-css=\"tve-u-161e2566543\"] h4, :not(#tve) [data-css=\"tve-u-161e2566543\"] h5, :not(#tve) [data-css=\"tve-u-161e2566543\"] h6 { color: rgb(0, 0, 0); }[data-css=\"tve-u-161e2564912\"] { color: rgb(0, 0, 0); }:not(#tve) [data-css=\"tve-u-161e24f6f49\"] p, :not(#tve) [data-css=\"tve-u-161e24f6f49\"] li, :not(#tve) [data-css=\"tve-u-161e24f6f49\"] blockquote, :not(#tve) [data-css=\"tve-u-161e24f6f49\"] address, :not(#tve) [data-css=\"tve-u-161e24f6f49\"] h1, :not(#tve) [data-css=\"tve-u-161e24f6f49\"] h2, :not(#tve) [data-css=\"tve-u-161e24f6f49\"] h3, :not(#tve) [data-css=\"tve-u-161e24f6f49\"] h4, :not(#tve) [data-css=\"tve-u-161e24f6f49\"] h5, :not(#tve) [data-css=\"tve-u-161e24f6f49\"] h6 { color: rgb(0, 0, 0); }[data-css=\"tve-u-161e24f5a37\"] { color: rgb(0, 0, 0); }[data-css=\"tve-u-161e24f5a31\"] { color: rgb(0, 0, 0); }:not(#tve) [data-css=\"tve-u-161e24e509d\"] p, :not(#tve) [data-css=\"tve-u-161e24e509d\"] li, :not(#tve) [data-css=\"tve-u-161e24e509d\"] blockquote, :not(#tve) [data-css=\"tve-u-161e24e509d\"] address, :not(#tve) [data-css=\"tve-u-161e24e509d\"] h1, :not(#tve) [data-css=\"tve-u-161e24e509d\"] h2, :not(#tve) [data-css=\"tve-u-161e24e509d\"] h3, :not(#tve) [data-css=\"tve-u-161e24e509d\"] h4, :not(#tve) [data-css=\"tve-u-161e24e509d\"] h5, :not(#tve) [data-css=\"tve-u-161e24e509d\"] h6 { color: rgb(0, 0, 0); }[data-css=\"tve-u-161e24e3afd\"] { color: rgb(0, 0, 0); }[data-css=\"tve-u-161e24e3af9\"] { color: rgb(0, 0, 0); }:not(#tve) [data-css=\"tve-u-161e2440be6\"] { color: rgb(0, 23, 255) !important; font-size: 38px !important; text-transform: none !important; }[data-css=\"tve-u-161e24315ba\"] { color: rgb(0, 23, 255) !important; }[data-css=\"tve-u-161e24145b1\"] p { margin: 0px 0px 11px !important; padding: 0px !important; }:not(#tve) [data-css=\"tve-u-161e24145b3\"] { color: rgb(10, 0, 0) !important; }[data-css=\"tve-u-161e2450d4d\"] p { margin: 0px 0px 11px !important; padding: 0px !important; }:not(#tve) [data-css=\"tve-u-161e2450d4f\"] { color: rgb(10, 0, 0) !important; }[data-css=\"tve-u-161e248f554\"] p { margin: 0px 0px 11px !important; padding: 0px !important; }:not(#tve) [data-css=\"tve-u-161e248f557\"] { color: rgb(10, 0, 0) !important; }[data-css=\"tve-u-161e24c7540\"] p { margin: 0px 0px 11px !important; padding: 0px !important; }:not(#tve) [data-css=\"tve-u-161e24c7541\"] { color: rgb(10, 0, 0) !important; }[data-css=\"tve-u-161e2534cdc\"] p { margin: 0px 0px 11px !important; padding: 0px !important; }:not(#tve) [data-css=\"tve-u-161e2534cdd\"] { color: rgb(10, 0, 0) !important; }[data-css=\"tve-u-161e2591a13\"] p { margin: 0px 0px 11px !important; padding: 0px !important; }:not(#tve) [data-css=\"tve-u-161e2591a15\"] { color: rgb(10, 0, 0) !important; }[data-css=\"tve-u-161e25d4027\"] p { margin: 0px 0px 11px !important; padding: 0px !important; }:not(#tve) [data-css=\"tve-u-161e25d4028\"] { color: rgb(10, 0, 0) !important; }[data-css=\"tve-u-161e2616856\"] p { margin: 0px 0px 11px !important; padding: 0px !important; }:not(#tve) [data-css=\"tve-u-161e2616858\"] { color: rgb(10, 0, 0) !important; }[data-css=\"tve-u-161e2677811\"] p { margin: 0px 0px 11px !important; padding: 0px !important; }:not(#tve) [data-css=\"tve-u-161e2677812\"] { color: rgb(10, 0, 0) !important; }[data-css=\"tve-u-161e26b4bec\"] p { margin: 0px 0px 11px !important; padding: 0px !important; }:not(#tve) [data-css=\"tve-u-161e26b4bee\"] { color: rgb(10, 0, 0) !important; }[data-css=\"tve-u-161e27408d0\"] { margin-right: 15px !important; margin-left: 15px !important; }:not(#tve) [data-css=\"tve-u-161e27408d1\"] { color: rgb(255, 255, 255) !important; font-size: 28px !important; }[data-css=\"tve-u-161e27408d2\"] { min-height: 188px; }[data-css=\"tve-u-161e27408d3\"] { max-width: 550px; float: none; margin-left: auto !important; margin-right: auto !important; }[data-css=\"tve-u-161e27408d5\"] p { margin: 0px 0px 11px !important; padding: 0px !important; }:not(#tve) [data-css=\"tve-u-161e27408d6\"] { color: rgb(255, 255, 255) !important; }:not(#tve) [data-css=\"tve-u-161e27408d7\"]:hover .tcb-button-link { border-bottom: 4px solid rgb(197, 10, 10); border-radius: 8px; overflow: hidden; color: rgb(246, 243, 243) !important; background-color: rgb(251, 8, 8) !important; }:not(#tve) [data-css=\"tve-u-161e27408d7\"] .tcb-button-link { color: rgb(251, 8, 8) !important; }[data-css=\"tve-u-161e27408d7\"] .tcb-button-link { min-height: 54.7619px; font-size: 1.33333em; padding-top: 0px; padding-bottom: 0px; border: 4px solid rgb(251, 8, 8); border-radius: 7px; overflow: hidden; background-image: none !important; background-color: rgb(251, 249, 249) !important; }[data-css=\"tve-u-161e27408d7\"] { display: block; max-width: 68%; width: 68%; float: none; margin-top: 10px !important; margin-right: auto !important; margin-left: auto !important; }[data-css=\"tve-u-161e27408d8\"] { border-radius: 12px; overflow: hidden; background-image: linear-gradient(rgb(1, 118, 0), rgb(1, 118, 0)) !important; background-size: auto !important; background-position: 0px 0px !important; background-attachment: scroll !important; background-repeat: no-repeat !important; }[data-css=\"tve-u-161e27408d9\"] + div { clear: none; }[data-css=\"tve-u-161e27408d9\"] { float: none; width: 205px; --tve-border-radius: 30px; border-radius: 30px; overflow: hidden; margin: 5px auto 0px !important; }:not(#tve) [data-css=\"tve-u-16925aaf071\"] { font-size: 42px !important; color: rgb(255, 0, 0) !important; text-transform: none !important; }:not(#tve) [data-css=\"tve-u-16925be6b98\"] p, :not(#tve) [data-css=\"tve-u-16925be6b98\"] li, :not(#tve) [data-css=\"tve-u-16925be6b98\"] blockquote, :not(#tve) [data-css=\"tve-u-16925be6b98\"] address, :not(#tve) [data-css=\"tve-u-16925be6b98\"] .tcb-plain-text, :not(#tve) [data-css=\"tve-u-16925be6b98\"] label, :not(#tve) [data-css=\"tve-u-16925be6b98\"] h1, :not(#tve) [data-css=\"tve-u-16925be6b98\"] h2, :not(#tve) [data-css=\"tve-u-16925be6b98\"] h3, :not(#tve) [data-css=\"tve-u-16925be6b98\"] h4, :not(#tve) [data-css=\"tve-u-16925be6b98\"] h5, :not(#tve) [data-css=\"tve-u-16925be6b98\"] h6 { color: rgb(10, 0, 0); }:not(#tve) [data-css=\"tve-u-16925df96fb\"] { font-size: 32px !important; color: rgb(0, 23, 255) !important; }:not(#tve) [data-css=\"tve-u-161e24e509d\"] p, :not(#tve) [data-css=\"tve-u-161e24e509d\"] li, :not(#tve) [data-css=\"tve-u-161e24e509d\"] blockquote, :not(#tve) [data-css=\"tve-u-161e24e509d\"] address, :not(#tve) [data-css=\"tve-u-161e24e509d\"] .tcb-plain-text, :not(#tve) [data-css=\"tve-u-161e24e509d\"] label, :not(#tve) [data-css=\"tve-u-161e24e509d\"] h1, :not(#tve) [data-css=\"tve-u-161e24e509d\"] h2, :not(#tve) [data-css=\"tve-u-161e24e509d\"] h3, :not(#tve) [data-css=\"tve-u-161e24e509d\"] h4, :not(#tve) [data-css=\"tve-u-161e24e509d\"] h5, :not(#tve) [data-css=\"tve-u-161e24e509d\"] h6 { color: rgb(10, 0, 0); }:not(#tve) [data-css=\"tve-u-161e24f6f49\"] p, :not(#tve) [data-css=\"tve-u-161e24f6f49\"] li, :not(#tve) [data-css=\"tve-u-161e24f6f49\"] blockquote, :not(#tve) [data-css=\"tve-u-161e24f6f49\"] address, :not(#tve) [data-css=\"tve-u-161e24f6f49\"] .tcb-plain-text, :not(#tve) [data-css=\"tve-u-161e24f6f49\"] label, :not(#tve) [data-css=\"tve-u-161e24f6f49\"] h1, :not(#tve) [data-css=\"tve-u-161e24f6f49\"] h2, :not(#tve) [data-css=\"tve-u-161e24f6f49\"] h3, :not(#tve) [data-css=\"tve-u-161e24f6f49\"] h4, :not(#tve) [data-css=\"tve-u-161e24f6f49\"] h5, :not(#tve) [data-css=\"tve-u-161e24f6f49\"] h6 { color: rgb(10, 0, 0); }:not(#tve) [data-css=\"tve-u-161e2566543\"] p, :not(#tve) [data-css=\"tve-u-161e2566543\"] li, :not(#tve) [data-css=\"tve-u-161e2566543\"] blockquote, :not(#tve) [data-css=\"tve-u-161e2566543\"] address, :not(#tve) [data-css=\"tve-u-161e2566543\"] .tcb-plain-text, :not(#tve) [data-css=\"tve-u-161e2566543\"] label, :not(#tve) [data-css=\"tve-u-161e2566543\"] h1, :not(#tve) [data-css=\"tve-u-161e2566543\"] h2, :not(#tve) [data-css=\"tve-u-161e2566543\"] h3, :not(#tve) [data-css=\"tve-u-161e2566543\"] h4, :not(#tve) [data-css=\"tve-u-161e2566543\"] h5, :not(#tve) [data-css=\"tve-u-161e2566543\"] h6 { color: rgb(10, 0, 0); }:not(#tve) [data-css=\"tve-u-169272145da\"] { font-size: 25px !important; color: rgb(0, 23, 255) !important; }:not(#tve) [data-css=\"tve-u-161e258d5fa\"] p, :not(#tve) [data-css=\"tve-u-161e258d5fa\"] li, :not(#tve) [data-css=\"tve-u-161e258d5fa\"] blockquote, :not(#tve) [data-css=\"tve-u-161e258d5fa\"] address, :not(#tve) [data-css=\"tve-u-161e258d5fa\"] .tcb-plain-text, :not(#tve) [data-css=\"tve-u-161e258d5fa\"] label, :not(#tve) [data-css=\"tve-u-161e258d5fa\"] h1, :not(#tve) [data-css=\"tve-u-161e258d5fa\"] h2, :not(#tve) [data-css=\"tve-u-161e258d5fa\"] h3, :not(#tve) [data-css=\"tve-u-161e258d5fa\"] h4, :not(#tve) [data-css=\"tve-u-161e258d5fa\"] h5, :not(#tve) [data-css=\"tve-u-161e258d5fa\"] h6 { color: rgb(10, 0, 0); }:not(#tve) [data-css=\"tve-u-161e25e5c08\"] p, :not(#tve) [data-css=\"tve-u-161e25e5c08\"] li, :not(#tve) [data-css=\"tve-u-161e25e5c08\"] blockquote, :not(#tve) [data-css=\"tve-u-161e25e5c08\"] address, :not(#tve) [data-css=\"tve-u-161e25e5c08\"] .tcb-plain-text, :not(#tve) [data-css=\"tve-u-161e25e5c08\"] label, :not(#tve) [data-css=\"tve-u-161e25e5c08\"] h1, :not(#tve) [data-css=\"tve-u-161e25e5c08\"] h2, :not(#tve) [data-css=\"tve-u-161e25e5c08\"] h3, :not(#tve) [data-css=\"tve-u-161e25e5c08\"] h4, :not(#tve) [data-css=\"tve-u-161e25e5c08\"] h5, :not(#tve) [data-css=\"tve-u-161e25e5c08\"] h6 { color: rgb(10, 0, 0); }:not(#tve) [data-css=\"tve-u-161e26394b1\"] p, :not(#tve) [data-css=\"tve-u-161e26394b1\"] li, :not(#tve) [data-css=\"tve-u-161e26394b1\"] blockquote, :not(#tve) [data-css=\"tve-u-161e26394b1\"] address, :not(#tve) [data-css=\"tve-u-161e26394b1\"] .tcb-plain-text, :not(#tve) [data-css=\"tve-u-161e26394b1\"] label, :not(#tve) [data-css=\"tve-u-161e26394b1\"] h1, :not(#tve) [data-css=\"tve-u-161e26394b1\"] h2, :not(#tve) [data-css=\"tve-u-161e26394b1\"] h3, :not(#tve) [data-css=\"tve-u-161e26394b1\"] h4, :not(#tve) [data-css=\"tve-u-161e26394b1\"] h5, :not(#tve) [data-css=\"tve-u-161e26394b1\"] h6 { color: rgb(10, 0, 0); }[data-css=\"tve-u-169274623bb\"] { display: block; max-width: 382px; width: 382px; }:not(#tve) [data-css=\"tve-u-169274623bb\"]:hover .tcb-button-link { color: rgb(255, 255, 255) !important; background-color: rgb(3, 255, 51) !important; background-image: none !important; border: 3px solid rgb(3, 255, 51) !important; }[data-css=\"tve-u-169274623bb\"] .tcb-button-link { border: 3px solid rgb(3, 255, 51); border-radius: 10px; overflow: hidden; min-height: 54.7619px; font-size: 1.33333em; padding-top: 0px; padding-bottom: 0px; background-image: none !important; background-color: rgb(255, 255, 255) !important; }:not(#tve) [data-css=\"tve-u-169274623bb\"] .tcb-button-link { color: rgb(0, 23, 255) !important; }:not(#tve) [data-css=\"tve-u-169274623d8\"] { color: rgb(3, 255, 51) !important; font-size: 19px !important; }:not(#tve) [data-css=\"tve-u-169274623bb\"]:hover .tcb-button-link span { color: rgb(255, 255, 255) !important; }:not(#tve) [data-css=\"tve-u-169274623bb\"] .tcb-button-link span { color: rgb(3, 255, 51); }.tcb-post-list[data-css=\"tve-u-186df1bf84d\"] .post-wrapper.thrv_wrapper { width: calc(100% + 0px); }.tcb-post-list[data-css=\"tve-u-186df1bf84d\"] .post-wrapper.thrv_wrapper:nth-child(n+2) { margin-top: 50px !important; }.tcb-post-list[data-css=\"tve-u-186df1bf84d\"] .post-wrapper.thrv_wrapper:not(:nth-child(n+2)) { margin-top: 0px !important; }.tcb-post-list[data-css=\"tve-u-186df1bf84d\"] .post-wrapper.thrv_wrapper:not(:nth-child(n)) { margin-right: 30px !important; }.tcb-post-list[data-css=\"tve-u-186df1bf84d\"] .post-wrapper.thrv_wrapper:nth-child(n) { margin-right: 0px !important; }.tcb-post-list[data-css=\"tve-u-18703fb75db\"] .post-wrapper.thrv_wrapper { width: calc(33.3333% - 13.3333px); }.tcb-post-list[data-css=\"tve-u-18703fb75db\"] .post-wrapper.thrv_wrapper:nth-child(n+4) { margin-top: 20px !important; }.tcb-post-list[data-css=\"tve-u-18703fb75db\"] .post-wrapper.thrv_wrapper:not(:nth-child(n+4)) { margin-top: 0px !important; }.tcb-post-list[data-css=\"tve-u-18703fb75db\"] .post-wrapper.thrv_wrapper:not(:nth-child(3n)) { margin-right: 20px !important; }.tcb-post-list[data-css=\"tve-u-18703fb75db\"] .post-wrapper.thrv_wrapper:nth-child(3n) { margin-right: 0px !important; }[data-css=\"tve-u-16925be6b98\"] { margin-top: 0px !important; margin-bottom: 0px !important; }[data-css=\"tve-u-1939f07e276\"] { margin-top: 0px !important; }[data-css=\"tve-u-1939f080baa\"] { margin-top: 0px !important; margin-bottom: 10px !important; }[data-css=\"tve-u-161e24e509d\"] { margin-top: 0px !important; margin-bottom: 10px !important; padding-bottom: 0px !important; }[data-css=\"tve-u-1939f087abc\"] { margin-top: 0px !important; margin-bottom: 10px !important; }[data-css=\"tve-u-161e24f6f49\"] { margin-top: 0px !important; margin-bottom: 0px !important; }[data-css=\"tve-u-161e2566543\"] { margin-top: 0px !important; margin-bottom: 10px !important; }[data-css=\"tve-u-161e258d5fa\"] { margin-top: 0px !important; margin-bottom: 0px !important; }:not(#tve) .thrv-content-box [data-css=\"tve-u-1939f0a7e72\"] p, :not(#tve) .thrv-content-box [data-css=\"tve-u-1939f0a7e72\"] li, :not(#tve) .thrv-content-box [data-css=\"tve-u-1939f0a7e72\"] blockquote, :not(#tve) .thrv-content-box [data-css=\"tve-u-1939f0a7e72\"] address, :not(#tve) .thrv-content-box [data-css=\"tve-u-1939f0a7e72\"] .tcb-plain-text, :not(#tve) .thrv-content-box [data-css=\"tve-u-1939f0a7e72\"] label { font-size: var(--tve-font-size,20px); }[data-css=\"tve-u-1939f0a7e72\"] { --tve-font-size: 20px; --tve-color: rgb(7,0,0); --tve-applied---tve-color: rgb(7,0,0); text-align: justify; }:not(#tve) .thrv-content-box [data-css=\"tve-u-1939f0a7e72\"] p, :not(#tve) .thrv-content-box [data-css=\"tve-u-1939f0a7e72\"] li, :not(#tve) .thrv-content-box [data-css=\"tve-u-1939f0a7e72\"] blockquote, :not(#tve) .thrv-content-box [data-css=\"tve-u-1939f0a7e72\"] address, :not(#tve) .thrv-content-box [data-css=\"tve-u-1939f0a7e72\"] .tcb-plain-text, :not(#tve) .thrv-content-box [data-css=\"tve-u-1939f0a7e72\"] label, :not(#tve) .thrv-content-box [data-css=\"tve-u-1939f0a7e72\"] h1, :not(#tve) .thrv-content-box [data-css=\"tve-u-1939f0a7e72\"] h2, :not(#tve) .thrv-content-box [data-css=\"tve-u-1939f0a7e72\"] h3, :not(#tve) .thrv-content-box [data-css=\"tve-u-1939f0a7e72\"] h4, :not(#tve) .thrv-content-box [data-css=\"tve-u-1939f0a7e72\"] h5, :not(#tve) .thrv-content-box [data-css=\"tve-u-1939f0a7e72\"] h6 { color: var(--tve-color,rgb(7,0,0)); --tve-applied-color: var$(--tve-color,rgb(7,0,0)); --tcb-applied-color: rgb(7,0,0); }[data-css=\"tve-u-1939f0a7e72\"] p { padding: 0px 0px 11px !important; margin: 0px !important; }[data-css=\"tve-u-1939f0a7e74\"] { margin-top: 20px !important; margin-bottom: 20px !important; padding: 0px !important; }[data-css=\"tve-u-1939f0a7e75\"] { --tcb-text-highlight-color: rgb(237,243,13) !important; }[data-css=\"tve-u-1939f0a7e76\"] { --tcb-text-highlight-color: rgb(237,243,13) !important; }[data-css=\"tve-u-1939f0a7e77\"] { --tve-highlight-background: url(\"data:image\/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20314%20114%22%20preserveAspectRatio%3D'none'%3E%0A%09%09%09%09%09%3Cpath%20d%3D%22M149.412%202.398C98.053%204.579%2074.996%207.562%2053.903%2014.754%2028.892%2023.283%208.503%2040.617%202.929%2058.09c-4.148%2013.004-.464%2026.402%2010.207%2037.118%205.664%205.687%2015.228%2012.328%2021.753%2015.104%202.939%201.25%208.598%202.708%2010.559%202.72%201.16.008%201.111-.129-.909-2.543-2.554-3.05-4.753-7.567-4.761-9.775-.008-2.502%202.482-6.937%204.862-8.661%205.613-4.066%2020.333-6.115%2050.607-7.046%2012.81-.394%2019.622.068%2047.623%203.231%2057%206.439%2066.925%207.222%2091.845%207.248%2016.516.016%2020.951-.139%2026.167-.919%2020.12-3.007%2032.633-8.401%2041.489-17.883%206.859-7.344%2010.154-16.516%2010.254-28.537.032-3.902-.231-7.704-.651-9.42-5.257-21.464-31.961-33.668-80.137-36.622-11.85-.727-62.651-.546-82.425.293%22%2F%3E%0A%09%09%09%09%3C%2Fsvg%3E\"); --tcb-text-highlight-color: #2ABB61 !important; }[data-css=\"tve-u-1939f0a7e78\"] { --tcb-text-highlight-color: rgb(30,184,76) !important; }[data-css=\"tve-u-1939f0a7e79\"] { --tcb-text-highlight-color: transparent !important; }[data-css=\"tve-u-1939f0f2ec6\"] { width: 466px; --tve-alignment: center; margin-left: auto !important; margin-right: auto !important; float: none; --tve-border-radius: 60px; border-radius: 60px; overflow: hidden; }}@media (max-width: 1023px){:not(#tve) [data-css=\"tve-u-161e27408db\"] { font-size: 22.9999px !important; }[data-css=\"tve-u-161e27408d7\"] { display: block; max-width: 73%; width: 73%; float: none; margin-right: auto !important; margin-left: auto !important; }:not(#tve) [data-css=\"tve-u-16925aaf071\"] { font-size: 25px !important; }:not(#tve) [data-css=\"tve-u-161e2440be6\"] { font-size: 22px !important; }:not(#tve) [data-css=\"tve-u-16925df96fb\"] { font-size: 22px !important; }:not(#tve) [data-css=\"tve-u-169272145da\"] { font-size: 22px !important; }}@media (max-width: 767px){:not(#tve) [data-css=\"tve-u-161e2440be6\"] { font-size: 20px !important; }:not(#tve) [data-css=\"tve-u-161e27408db\"] { font-size: 18.9999px !important; }:not(#tve) [data-css=\"tve-u-161e27408d7\"] .tcb-button-link { font-size: 20px; }[data-css=\"tve-u-161e27408d7\"] { display: block; max-width: 98%; width: 98%; margin-right: 1px !important; }:not(#tve) [data-css=\"tve-u-169274623bb\"] .tcb-button-link { font-size: 20px; }[data-css=\"tve-u-169274623bb\"] { display: block; max-width: 292px; width: 292px; }:not(#tve) [data-css=\"tve-u-169274623d8\"] { font-size: 14px !important; }:not(#tve) [data-css=\"tve-u-16925aaf071\"] { font-size: 23px !important; }:not(#tve) [data-css=\"tve-u-16925df96fb\"] { font-size: 20px !important; }:not(#tve) [data-css=\"tve-u-169272145da\"] { font-size: 20px !important; }}","tve_user_custom_css":"","tve_globals":{"e":"1","font_cls":[]},"tcb2_ready":1,"tcb_editor_enabled":1,"tve_landing_page":"","_tve_header":"","_tve_footer":""},"categories":[4,22],"tags":[293,292,178,27,275,276,295,294],"class_list":["post-3308","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-programar-en-excel","category-curso-basico-de-vba","tag-aprender-excel","tag-excel-y-contabilidad","tag-macro","tag-macros","tag-macros-escrita","tag-macros-grabadas","tag-plantillas-excel","tag-programar-en-excel","post-wrapper","thrv_wrapper"],"_links":{"self":[{"href":"https:\/\/aplicaexcelcontable.com\/blog\/wp-json\/wp\/v2\/posts\/3308","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/aplicaexcelcontable.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/aplicaexcelcontable.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/aplicaexcelcontable.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/aplicaexcelcontable.com\/blog\/wp-json\/wp\/v2\/comments?post=3308"}],"version-history":[{"count":0,"href":"https:\/\/aplicaexcelcontable.com\/blog\/wp-json\/wp\/v2\/posts\/3308\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/aplicaexcelcontable.com\/blog\/wp-json\/wp\/v2\/media\/59900"}],"wp:attachment":[{"href":"https:\/\/aplicaexcelcontable.com\/blog\/wp-json\/wp\/v2\/media?parent=3308"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/aplicaexcelcontable.com\/blog\/wp-json\/wp\/v2\/categories?post=3308"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/aplicaexcelcontable.com\/blog\/wp-json\/wp\/v2\/tags?post=3308"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}