+ Reply to Thread
Results 1 to 8 of 8

Macro will not allow conditional formatting with a user-defined function

  1. #1
    Registered User
    Join Date
    09-13-2013
    Location
    New York
    MS-Off Ver
    Excel 2010
    Posts
    5

    Macro will not allow conditional formatting with a user-defined function

    Problem: I want to hi-light all cells that contain a formula - but by using a macro, so that I can later un-hi-light that same range. In other words, I want to easily see where formulas have replaced hard numbers, and then revert back just as quickly. I realize that there is a "Show Formulas" menu option, but it is messy, and it does not make the relevant cells any more visible.

    Currently, I can hi-light the cells by creating the following user-defined function:

    Please Login or Register  to view this content.
    ...and then using conditional formatting over a range, using the "formula to determine which cells...." as follows:

    =IsFormula(A1) ..... [applied to a range, of course]

    This works great. But now I want to have a macro (button) create that condition, with another macro button to delete the condition. Excel will allow a macro to delete conditions just fine. And Excel will allow a macro to create conditions based on cell values, etc. But Excel does not seem to allow a macro to create a condition based on a user-defined function.

    If I record a macro of my steps, I get the following:

    Please Login or Register  to view this content.
    The problem is that nothing happens. When I check the conditional formatting rules, it says "No Format Set."

    Any help would be appreciated.
    Last edited by Med_MV; 09-14-2013 at 02:18 PM. Reason: As per Forum Rule #3, please use code tags…Thanks.

  2. #2
    Forum Expert JBeaucaire's Avatar
    Join Date
    03-21-2004
    Location
    Bakersfield, CA
    MS-Off Ver
    2010, 2016, Office 365
    Posts
    33,492

    Re: Macro containing conditional formatting using user-defined function

    If you just want to turn that UDF off and on, build that capability into the UDF itself. Let's use a cell on a specific sheet for that purpose.

    1) Using Sheet1, cell AA1 (usually not used, change to any unused cell you wish)
    2) We will put the word ON in AA1 when we want the UDF to work, OFF when we want it to NOT work.
    3) Create a macro that simply toggles the value in Sheet1!AA1
    4) Force the sheet in question to recalculate so that all CF formulas reevaluate (a problem with newer versions of Excel)


    In a standard code module:
    Please Login or Register  to view this content.

    In the Sheet1 module:
    Please Login or Register  to view this content.
    _________________
    Microsoft MVP 2010 - Excel
    Visit: Jerry Beaucaire's Excel Files & Macros

    If you've been given good help, use the icon below to give reputation feedback, it is appreciated.
    Always put your code between code tags. [CODE] your code here [/CODE]

    ?None of us is as good as all of us? - Ray Kroc
    ?Actually, I *am* a rocket scientist.? - JB (little ones count!)

  3. #3
    Registered User
    Join Date
    09-13-2013
    Location
    New York
    MS-Off Ver
    Excel 2010
    Posts
    5

    Re: Macro containing conditional formatting using user-defined function

    Sorry. This is not quite as clean as I need. The mandatory "recalculation" method does not work very well (on some sheets, I have to enter multiple numbers multiple times for all cells to fully recalculate and show the conditional formatting results -- F9 does not seem to work at all, on this setup). Also, this means that the conditional formatting becomes a permanent part of each tab in the worksheet. This takes up space, and slows navigation through the worksheet (it is a very very large spreadsheet).

    I need a way to have the conditional formatting turned on for just a brief time, and then remove the formatting entirely.

    Again, I can set it up manually, and it works great. And I can have a macro to remove it, and that works great. I just need a macro to do the initial set-up.

  4. #4
    Forum Guru JosephP's Avatar
    Join Date
    03-27-2012
    Location
    Ut
    MS-Off Ver
    2003/10
    Posts
    7,328

    Re: Macro will not allow conditional formatting with a user-defined function

    perhaps
    Please Login or Register  to view this content.
    and then
    Please Login or Register  to view this content.
    rather than cf

    or use a custom Style applied to formula cells that you can modify as desired
    Last edited by JosephP; 09-16-2013 at 10:40 AM.
    Josie

    if at first you don't succeed try doing it the way your wife told you to

  5. #5
    Registered User
    Join Date
    09-13-2013
    Location
    New York
    MS-Off Ver
    Excel 2010
    Posts
    5

    Re: Macro will not allow conditional formatting with a user-defined function

    Getting closer, but still not what I need. I thought I could get a solution without going into too many details, but here is the complicated full story.... This is a large spreadsheet, with thousands of rows and 100+ columns, doing a "Retrieve" from a Hyperion Essbase database cube. The left-most few columns, and the top-most few rows, contain criteria for the Retrieve. The sheet also has many formulas throughout, for sub-totaling and totaling various points of data, both on many rows, and in some columns. The columns are typically months of data, across several years, grouped in sections of columns such as Budget, Actual, and Forecast data, with calculated quarterly break-points. We want the users (Cost Center Managers, etc.) to look at the data as retrieved (actual through certain periods, and forecast and budget for other periods), and then over-ride the forecast cells with new projections.

    This is where it gets tricky. They can either enter a plain number, or a formula to represent their answer. Once they are ready, this data can be up-loaded back into Hyperion Essbase, as-is, into a new Essbase cube. If the previous forecast was loaded into cube Forecast1, for example, then that was retrieved, and the new forecast will be up-loaded into cube Forecast2. Then, when we are ready for the next forecast, we can re-retrieve this sheet, pulling new Actual data, and the latest forecast (now from cube Forecast2), and ask the Managers to provide the next forecast, which will now be loaded into cube Forecast3.

    The problem, is that Hyperion Essbase will over-write (on a Retrieve) any number value with a new number from its cube. But, it will NOT over-write a formula. So if a user has entered a formula for their forecast (such as 975,000/6), then that cell will be ignored and not retrieved. So, if we had just forecast August, and someone forecast a cell by using a formula, and now four weeks later, we retrieve August actual data, then that particular cell will not be retrieved with August actual data. Our balances will be wrong. We need a way to quickly spot these items, delete the formulas, and re-retrieve the data.

    Conditional formatting works exactly the way we want it to work. It high-lights all formulas, even those that we created, and then the conditional formatting can be easily removed when we are finished, without affecting any previous formatting then in place. This is important because we have already formatted our own formulas, so that users know not to touch those items, and also so that sub-totals can easily be spotted, and we do not want the formatting of those formulas changed. The last suggestion posted would delete that formatting.

    So, in summary, we already have formatting in place throughout this workbook, and do not want that changed. Only conditional formatting can be applied and then removed without disturbing that original formatting. We just need a way to automatically and quickly apply the CF and then remove it, without going through all of the steps one would normally have to do for a CF. A macro seemed like the best way, if it could be done.

  6. #6
    Forum Expert JBeaucaire's Avatar
    Join Date
    03-21-2004
    Location
    Bakersfield, CA
    MS-Off Ver
    2010, 2016, Office 365
    Posts
    33,492

    Re: Macro will not allow conditional formatting with a user-defined function

    SO wouldn't a better macro be one that examined a specific range of cells and replaced any formulas in those cells with just values eliminating the problem?


    Please Login or Register  to view this content.

  7. #7
    Registered User
    Join Date
    09-13-2013
    Location
    New York
    MS-Off Ver
    Excel 2010
    Posts
    5

    Re: Macro will not allow conditional formatting with a user-defined function

    The problem there is that the data entry cells are interspersed among hundreds of legitimate formulas; meaning that there would be hundreds of ranges to "value." Also, the ranges would be different each month. This month, people are forecasting September through December. Next month, September turns to Actual, and only October through December are forecast, so September needs to be "cleaned." The following month, October needs to be "cleaned." etc. The code to clean every range would be enormous.

  8. #8
    Forum Expert JBeaucaire's Avatar
    Join Date
    03-21-2004
    Location
    Bakersfield, CA
    MS-Off Ver
    2010, 2016, Office 365
    Posts
    33,492

    Re: Macro will not allow conditional formatting with a user-defined function

    Then such a macro could simply include a manual element. Select a congruent range of cells, then run the macro...

    Please Login or Register  to view this content.

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. [SOLVED] Using the MOD function in a "User" defined macro
    By Vba Novice in forum Excel Programming / VBA / Macros
    Replies: 5
    Last Post: 01-11-2013, 04:20 PM
  2. user defined macro to replace certain characters in a string based on user input
    By whatappears in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 12-17-2012, 06:25 PM
  3. Access connection works in Macro, not in user-defined Function
    By Steve in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 05-27-2005, 10:05 AM
  4. How to: User Form to assign a user defined range to a macro variab
    By TrevTrav in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 03-22-2005, 04:06 PM
  5. [SOLVED] Macro user defined function row information
    By bj in forum Excel Programming / VBA / Macros
    Replies: 4
    Last Post: 03-09-2005, 11:06 AM

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1