subject
Computers and Technology, 11.10.2021 04:30 jeanieb

What are the steps to change an existing macro? Use the drop-down menus to complete them. 1. Go to the
tab on the ribbon.
2. In the Macros group, click
3. Select the name of the macro you wish to alter.
4. Click
which will open the VBA Editor.
5. Find and change the code for the macro.
6. From the File drop-down menu, select
7. Close the VBA Editor to return to Word.
PLEASE HURRY


What are the steps to change an existing macro? Use the drop-down menus to complete them.

1. Go t

ansver
Answers: 2

Another question on Computers and Technology

question
Computers and Technology, 24.06.2019 00:00
Visualizing a game of β€œtag” to remember the meaning of contagious
Answers: 3
question
Computers and Technology, 24.06.2019 02:10
Aspeed limit sign that says "night" indicates the legal speed between sunset and sunrise.
Answers: 2
question
Computers and Technology, 24.06.2019 17:40
When analyzing data sets, such as data for human heights or for human weights, a common step is to adjust the data. this can be done by normalizing to values between 0 and 1, or throwing away outliers. for this program, adjust the values by subtracting the smallest value from all the values. the input begins with an integer indicating the number of integers that follow. ex: if the input is 5 30 50 10 70 65, the output is: 20 40 0 60 55
Answers: 1
question
Computers and Technology, 24.06.2019 18:20
Acommon algorithm for converting a decimal number to binary is to repeatedly divide the decimal number by 2 and save the remainder. this division is continued until the result is zero. then, each of the remainders that have been saved are used to construct the binary number.write a recursive java method that implements this algorithm.it will accept a value of int and return a string with the appropriate binary character representation of the decimal number.my code: public class lab16{public string converttobinary(int input){int a; if(input > 0){a = input % 2; return (converttobinary(input / 2) + "" +a); } return ""; } }
Answers: 1
You know the right answer?
What are the steps to change an existing macro? Use the drop-down menus to complete them. 1. Go to...
Questions
question
Computers and Technology, 29.11.2020 14:30
Questions on the website: 13722363