Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Does anyone know how I can get a user-defined function to re-evaluate itself (based on changed data in the spreadsheet)? I've tried F9 and Shift+F9, but those don't work. The only thing that seems to work is editing the cell with the function call and then pressing Enter. Any ideas? I seem to remember being able to do this...

share|improve this question

4 Answers

up vote 14 down vote accepted

You should use Application.Volatile in the top of your function

Function doubleMe(d)
    Application.Volatile
    doubleMe = d * 2
End Function

It will then reevaluate whenever the workbook changes (if you calculation is set to automatic)

share|improve this answer
That's awesome, i did not know that, thanks a bunch – Matthew Rathbone Oct 10 '08 at 12:37
1  
Thanks, just been bashing my head against a desk over this. Should point out though that in Excel 2010, you need to pass True to Application.Volatile, i.e. Application.Volatile True. – mdm Mar 31 '10 at 13:00
THANK. YOU. I would buy you beer if I could! – André Terra Mar 30 '12 at 15:05
@airstrike You are welcome – vzczc Apr 2 '12 at 4:44

Some more information on the F9 keyboard shortcuts for calculation in Excel

  • F9 Recalculates all worksheets in all open workbooks
  • Shift+F9 Recalculates the active worksheet
  • Ctrl+Alt+F9 Recalculates all worksheets in all open workbooks (Full recalculation)
  • Shift+Ctrl+Alt+F9 Rebuilds the dependency tree and does a full recalculation
share|improve this answer

Okay, found this one myself. You can use Ctrl+Alt+F9 to accomplish this.

share|improve this answer

If you include ALL references to spreadsheet data in the UDF parameter list Excel will recalculate your function whenever the referenced data changes:


    Public Function doubleMe(d as variant)
    doubleMe=d*2
    end Function

You can also use Application.Volatile, but this has the disadvantage of making your UDF always recalculate, even when it does not need to because the referenced data has not changed.


    Public Function doubleMe()
    Application.Volatile
    doubleMe=Worksheets("Fred").Range("A1")*2
    end Function

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.