1answer.
Ask question
Login Signup
Ask question
All categories
  • English
  • Mathematics
  • Social Studies
  • Business
  • History
  • Health
  • Geography
  • Biology
  • Physics
  • Chemistry
  • Computers and Technology
  • Arts
  • World Languages
  • Spanish
  • French
  • German
  • Advanced Placement (AP)
  • SAT
  • Medicine
  • Law
  • Engineering
Irina-Kira [14]
3 years ago
10

Lindsey also needs to calculate the commissions earned each month. If the company earns $200,000 or more in a month, the commiss

ion is 35% of the sales. If the company earns less than $200,000 in a month, the commission is 27% of the sales. Calculate the commissions as follows:
a. In cell B17, enter a formula that uses the IF function and tests whether the total sales for January (cell B10) is greater than or equal to 200000.

b. If the condition is true, multiply the total sales for January (cell B10) by 0.35 to calculate a commission of 35%.

c. If the condition is false, multiply the total sales for January (cell B10) by 0.27 to calculate a commission of 27%.

d. Use the Fill Handle to fill the range C17:G17 with the formula in cell B17 to calculate the commissions for February through June.
Computers and Technology
2 answers:
lutik1710 [3]3 years ago
8 0

Answer:

I have created and attached an image with example values for this question.

First we'll learn the IF function syntax:

IF(logical_test, value_if_true, [value_if_false])

Where

logical_test is the decision making comparison

value_if_true is the result to return when TRUE

value_if_false is the result to return when FALSE

We assume that cells B10 to G10 contain the Total Sales for January to June. And cells B17 to G17 contain the Commissions for January to June.

a.

The formula to use in cell B17 is:

<em>=IF(B10>=200000;True;False)</em>

<em />

b.

The formula to use in cell B17 is:

<em>=IF(B10>=200000;B10*0.35;False)</em>

<em />

c.

The formula to use in cell B17 is:

<em>=IF(B10>=200000;B10*0.35;B10*0.27)</em>

<em />

d.

To copy the formula in B17 to C17:G17, you can just copy and paste or select cell B17 and drag from the black square on the bottom right of the cell.

Georgia [21]3 years ago
4 0

Enter this and you’ll be good to go!

You might be interested in
Which type of password attack employs a list of pre-defined passwords that it tries against a login prompt?.
Salsk061 [2.6K]

That is calld a bruteforce attack

4 0
2 years ago
What is computer science
solong [7]

Answer:

computer science is the study of the principles and use of computers.

Explanation:

8 0
3 years ago
Read 2 more answers
Write a program that takes in an integer in the range 20-98 as input. The output is a countdown starting from the integer, and s
S_A_V [24]

Answer:

// program in C++.

#include <bits/stdc++.h>

using namespace std;

int main() {

//  variable  

int num;

cout<<"Enter the number between 20 and 98: ";

// read number

cin >> num;

while(num<20||num>98)

{

   cout<<"Wrong input!!enter number between 20-98 only:";

   cin>>num;

}

cout<<"The output is: ";

while(num % 10 != num /10)

{

// print numbers.  

cout<<num<<" ";

// update num.

num--;

}

// display the number.

cout<<num<<endl;;

return 0;

}

Explanation:

Read a number from user and assign it to variable "num".Check if entered number  is in between 20-98 or not.If input number is less than 20 or greater than 98 then  ask again to enter a number between 20-98 until user enter a valid input.Then print  the countdown from input number till both the digit of number are same.

Output:

Enter the number between 20 and 98: 99                                                                                    

Wrong input!!enter number between 20-98 only:12                                                                            

Wrong input!!enter number between 20-98 only:93                                                                            

The output is: 93 92 91 90 89 88

Enter the number between 20 and 98: 77                                                                                    

The output is: 77

7 0
3 years ago
can anyone yell how to save the python file in folder i am saving it but whenever I'm trying to open its not open​
NISA [10]

Saving a python file implies that one wants to have a physical file of the program on a storage device.

To save a python program, the following step must be followed

  1. Select Save As
  2. Navigate to the directory where you want to save the file
  3. Enter the file name
  4. Click save

Note that python files are saved in the .py extension

Read more about python programs at:

brainly.com/question/16397886

4 0
3 years ago
Read 2 more answers
Very complex type of processing is carried out by a which computer.
avanturin [10]

Supercomputers are used to process very complex type of processing. They are very powerful computers.

<h3>What are supercomputers?</h3>

Supercomputers are powerful computers that have very high processing and performance. They work very fast with in a fraction of second. They are used to doing heavy calculation and work.

Thus, the supercomputers are used to process very complex type of processing.

Learn more about supercomputers

brainly.com/question/23126369

#SPJ1

4 0
2 years ago
Other questions:
  • A touch screen is classified as a special type of scanning device true or false
    15·1 answer
  • What is heaven backwards?
    11·2 answers
  • Add a throw statement to the processNumbers function that throws the message "All elements in the list should be numbers." if on
    12·1 answer
  • Which network component connects a device with the transmission media?
    9·1 answer
  • In the ADT graph the methid addVertex has efficiency
    15·1 answer
  • In programming, what is a string?
    8·2 answers
  • Which statement best compares routers and hubs?
    9·1 answer
  • C++ code pls write the code
    12·1 answer
  • What is the best way to improve the following code fragment? if ((counter % 10) == 0) { System.out.println("Counter is divisible
    11·1 answer
  • Why must the image be reduced when the field of view is widened to take in more of the scene?
    5·2 answers
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!