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...
|
|
You should use Application.Volatile in the top of your function
It will then reevaluate whenever the workbook changes (if you calculation is set to automatic) |
||
|
|
|
Some more information on the F9 keyboard shortcuts for calculation in Excel
|
||
|
|
|
|
Okay, found this one myself. You can use Ctrl+Alt+F9 to accomplish this. |
||
|
|
|
|
If you include ALL references to spreadsheet data in the UDF parameter list Excel will recalculate your function whenever the referenced data changes:
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.
|
|||
|
|
