• Shuffle
    Toggle On
    Toggle Off
  • Alphabetize
    Toggle On
    Toggle Off
  • Front First
    Toggle On
    Toggle Off
  • Both Sides
    Toggle On
    Toggle Off
  • Read
    Toggle On
    Toggle Off
Reading...
Front

Card Range To Study

through

image

Play button

image

Play button

image

Progress

1/42

Click to flip

Use LEFT and RIGHT arrow keys to navigate between flashcards;

Use UP and DOWN arrow keys to flip the card;

H to show hint;

A reads text to speech;

42 Cards in this Set

  • Front
  • Back

GO back to A1 cell

Ctrl + Home

Go to last data cell (Far right,Down)

Ctrl + End

Select all table cells

Shift + Ctrl + End

Move to next data sheet

Ctrl + PgUp

Move to previous data sheet

Ctrl + PgDn

Move horizontally (Right)

Alt + PgDn

Move horizontally (Left)

Alt + PgUp

Move Vertically (Down)

PgDn

Move Vertically (Up)

PgUp

Create a new worksheet

Shift + F11

Enter today's date

Ctrl + ;




OR




=today()

Function to get date difference by year. (e.g. DOB - Today's date)

=datedif(DOB, Today(),"y")

How to concatenate several cells into a cell?


What are the two different ways of doing it?

=concatenate(A2, " ", C2, " ", D2)




OR




=A2 & " " & C2 & " " & D2

Give an example of AND

=IF(AND(B2>0.55,C2>0.55,D2>.55),"Pass","Fail")

What is the difference between using "IF" only vs "IF(AND"

In "IF" we can check for only one condition to be true but in "IF(AND" we can check for multiple conditions to be either True or False

Function to check if a cell has a formula

=if(isformula(D8),formulatext(D8),"No Formula")

How Does "VLOOKUP" work?

=VLOOKUP(equals value we look for, table, the number of column starting from 1st column in the table, False --> exact match/True --> similar)

Under which tab we can find the "Name Manager"?

"FORMULAS"

How does VLOOKUP and HLOOKUP "True" work?

It looks at a table and sees the cut-off points. for example if our value is 40% and the table is 0%,50%,70%,90%. It will realize that 40% is before 50% so it will be equal to 0%.

How to copy a sheet from one workbook to another?

click on one one of the cells in (the sheet you want to copy)


Then go to the other workbook and select where you want to paste the data and press "Enter"

How to add new data to an already existing name range table?

The solution is to include several empty rows and the bottom of the name range we want to set so when we insert new data at the end of the table the range will then extend to include the last empty rows as well.

What function do we use to extract ONLY the seconds of a time?

=second(A2)

What function do we use to extract ONLY the minutes of a time?
=minute(A2)

What function do we use to extract ONLY the hours of a time?

=hour(A2)

What function do we use to combine minutes ,seconds and hours into a single date?

=time(A2,B2,C2)

How do we calculate the time between 11:00 PM and 2:00 AM? (Assuming that 11:00 AM is A2 and 2:00 PM is B2)

We add value of 1 to A2. in excel 1 means one day or 24hours. We could solve this with an if statement---> =IF(B2<A2,(B2+1)-A2,B2-A2)

What function do we use to extract ONLY the day of a date?

=day(A2)

What function do we use to extract ONLY the month of a date?

=month(A2)

What function do we use to extract ONLY the year of a date?

=year(A2)

How to convert several cells containing day,month and year into a single date?

=date(A2,B2,C2)

What is the function to round a number by for example 4 decimal places?

=round(A2,4)

How to round down a number by 3 decimal places?

=rounddown(A2,3)

How to round up a number by 5 decimal places?

=roundup(A2,5)

What is the function to get the integer (Without decimal places?

=int(A2)

How to get only the decimal place of a division?


(A2 is the main number and B2 is the divisor)

=mod(A2,B2)

How to check if a cell value is even or odd?

=if(mod(A2,2)=0, "The number is even","The number is odd")

Function to generate a random number?

=rand()

Function to generate a number withing a specific range?(e.g. 1 and 100)

=randbetween(1, 100)

The function to calculate loan payment per month


A2= annual rate %


B2= total number of payments


C2= total amount borrowed

=PMT(A2/12,B2,C2)

The function to calculate saving needs to be made each month to reach a target in a year


A2= Annual Interest Rate


B2= Number of monthly payments


C2= Target sum

=PMT(A2/12,B2,0,C2,0)

Function to remove spaces

=trim(A2)

Measure the characters of a cell

=len(A2)