Here’s an example of an OfficeScripts function to add two numbers that are passed as parameters to the function:
function addNumbers(number1, number2) { // Add the two numbers var sum = number1 + number2; // Display the sum in a message box MessageBox.Show("The sum is: " + sum.toString()); }
In this example, the addNumbers
function takes two parameters, number1
and number2
, which represent the numbers to be added. The numbers are then added together using the +
operator, and the result is stored in the sum
variable. Finally, a message box is displayed with the sum using the MessageBox.Show()
function.
To use this function, you can call it with the desired numbers as arguments. For example:
addNumbers(5, 7);
This will add the numbers 5 and 7 and display the result in a message box.
Please note that OfficeScripts are primarily designed to automate tasks within Excel for the web and Excel Online. The example provided here demonstrates the basic concept of adding two numbers, but in practice, you may want to modify the function to accept input from the user or retrieve the numbers from specific cells in an Excel worksheet.
Keep in mind that OfficeScripts are only supported in Excel for the web and Excel Online, and they may have limitations compared to other programming environments.