At Westonci.ca, we connect you with experts who provide detailed answers to your most pressing questions. Start exploring now! Join our platform to connect with experts ready to provide detailed answers to your questions in various areas. Get detailed and accurate answers to your questions from a dedicated community of experts on our Q&A platform.

in cell B5 create a formula using round function that rounds the value in cell G19 to an integer, with 0 decimal places

Sagot :

Answer:

=ROUND(G19, 0)

Explanation:

In Microsoft Excel you would need to click on cell B5 and then click the function bar at the top and paste the following formula

=ROUND(G19, 0)

This formula will grab whatever value is in cell G19 and round it to the nearest whole integer without any decimal places at all. This is handled by the ROUND() method which takes in two arguments, the first is the cell which has the value to be rounded, and the second argument is the number of decimal places to round to. 0 indicates no decimal places.