I'm writing some simple VBA scripts to transform some Excel files for a DB upload. As part of this, I am populating a column based on the calculation of two other columns. Should I handle that calculation in VBA and just put the final value in the destination column or should I populate the destination column with the formula and let Excel calculate it on the front end?
The only reason I'm thinking a formula might make more sense is if the user changes the data in the source columns for some reason. That shouldn't happen, but in theory it could. I'm not a guru so I'm wondering if either way makes more sense from a logical/performance/best practice standpoint.