After working on a formula to calculate a value, I am now looking to automatically insert that value into an Excel sheet by copying it to the clipboard for user convenience.
In my initial foray into JS, I am facing what seems like a simple issue. I have only come across methods that deal with copying raw values from html input tags, and have not found any solutions for copying values created in JavaScript.
var EEFactor = 1*1; // The formula for calculating a value
copyValue2Clipboard(EEFactor);
function value2Clipboard(value) {
// Seeking assistance
}