WISDOMBYDATA
  • BLOG
    • Blog Guide
    • Blog History
  • EXCEL
    • Functions & Formulas
    • VBA & Macros
    • VLOOKUP
    • Pivot Tables
    • Conditional Formatting
    • Tricks & Shortcuts
  • BI
    • SAP BOBJ/BW
    • Tableau
  • SQL
  • ABOUT
    • About WBD
    • About Me

Run a formula directly through a macro

12/9/2018

0 Comments

 


​As discussed in my previous blog post, this week I will go through how to input a formula within a macro. Here is the generic formula which needs to be inputted in the module tab of the sheet (i.e. press ALT+F11 > Insert>Module)

Sub Formula_property()
  Range("CELL").Formula = "=FORMULA”
End Sub

 
In the formula above input the reference cell where there is a the word CELL and input the formula where there is the word FORMULA.
 
 Reasons for having a formula within a macro:

  1. Speeds up the spreadsheet If calculations are set at Manual as oppose to Automatic (i.e. "Formula">"Calculation Options" in the ribbon) Many users tend to change the calculation option to manual especially if the spreadsheet contains many records (i.e. thousands of records or more) in order to speed up data processing and to avoid having the spreadsheet crash
  2. Helps store fewer formulas within the actual spreadsheet
  3. This way the formulas will be executed only when needed and when triggered through an event. E.g. Upon opening/closing the spreadsheet or clicking on a macro-enabled button, filter, etc.

Here’s an example: let’s input total revenue in Cell F3 of our spreadsheet

Picture

Now let’s use a more advanced formula. i.e. COUNTIF statement with multiple criteria. The important note about this is to make sure not to enter any values within the formula itself. Rather we must enter references to those values (from within the spreadsheet).

=SUMPRODUCT(COUNTIF(B2:B30,'Sales Branch List'!$A$2:$A$4))

For example, the formula above returns total number of IDs belonging to sales branches located in either “BARRIE","KINGSTON", or "BRAMPTON". However, I have not inputted these values directly into the formula but rather inputted the reference to them located within a different tab of the spreadsheet (i.e. Cells A2, A3, and A4 of the “Sales Branch List” tab). For more information on this please visit my previous blog post.

​And here is the outcome of both formulas executed directly through a macro.
Picture
0 Comments



Leave a Reply.

    Categories

    All
    BI
    EXCEL
    MISC
    SQL

    Archives

    June 2020
    May 2020
    April 2020
    March 2020
    February 2020
    December 2019
    November 2019
    October 2019
    September 2019
    August 2019
    July 2019
    June 2019
    May 2019
    April 2019
    March 2019
    February 2019
    January 2019
    December 2018
    November 2018
    October 2018
    September 2018
    August 2018
    July 2018
    June 2018
    May 2018
    April 2018
    March 2018
    September 2017
    August 2017
    July 2017
    June 2017
    May 2017
    April 2017
    March 2017
    February 2017
    January 2017
    December 2016
    November 2016
    October 2016
    September 2016
    August 2016
    July 2016
    June 2016
    May 2016
    April 2016
    March 2016
    February 2016
    May 2015
    April 2015
    March 2015
    February 2015
    January 2015
    December 2014
    November 2014
    October 2014
    September 2014
    August 2014
    April 2014
    March 2014
    February 2014
    January 2014
    December 2013
    November 2013

Powered by Create your own unique website with customizable templates.
  • BLOG
    • Blog Guide
    • Blog History
  • EXCEL
    • Functions & Formulas
    • VBA & Macros
    • VLOOKUP
    • Pivot Tables
    • Conditional Formatting
    • Tricks & Shortcuts
  • BI
    • SAP BOBJ/BW
    • Tableau
  • SQL
  • ABOUT
    • About WBD
    • About Me