Excel Flashcards

1
Q

Yes or No

A

=If(D1>=100,”Yes”,”No)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Find the total category

A

=Sumif(B1:B10,G2,C1:C10)
B1:B10 is the total of food types
C1:C10 is the total of amounts
G2 is a specific food type

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Lock row and column

A

=sumif($B$1:$B$10,G2,$C$:$C$10)
$ is used to lock the row and column

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

The formula for Automatically applying to a new row

A

=Sum(mytable[Amount])
This formula works when we name the table, especially select amount column from mytable

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Unique values

A

=unique(mytable[Date])
it will display unique values

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

unique values with the total amount

A

=unique(mytable[Date],G7,mytable[amount)
G7 is cell of date

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Leading Space

A

Space before Text

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Trailing space

A

space after text

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

remove leading space

A

=TRIM(movies[studio])

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

FIND AND REPLACE

A

ctrl f or ctrl h

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Paste the values

A

ctrl + alt + v

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q
  1. Find Duplicates
  2. Remove Duplicates
A
  1. Conditional formatting
  2. In Data
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Split the column

A

use text to column in data
delimited
fixed width

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

Combine data for a specific product

A

=VLOOKUP(productid, finance,2,false)
this only search first column not middle or last 2 is no of column

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

look vlookup value

A

=VLOOKUP([@[productid:[productid]], =finance,2,false)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

vlookup

A

=vlookup([@[movie_id]],finance,2,false)

17
Q

lock vlookup

A

=vlookup(Movies[@[movie_id]:[movie_id]],finance[#all],2,false)

18
Q

print all headers

A

Food[#Headers]

food is table name

19
Q

print Entire Table

A

food[#all]

food is table name

20
Q

What is index

A

The index is used to return a value from a specific range or location

21
Q

what is match

A

Match is used to return the position of specific value

22
Q

formula of index

A

=index(food,2,1)
food is table name
2 is row
1 is column

23
Q

formula of match

A

=match(movie_id, finance[movie_id],0)

movie id is column name
finance is table name
0 is match type

o return exact match
1 return approximate ascending match eg if 25 —> 30
-1 return approximate descending match eg if 25—>20

24
Q

index match

A

=index(finance, match([@[movieid]], finance[movieid],0),match(“budget”,finance[#header],0)
finance is table name, movieid is header, budget is header

25
Locking Index match
=index(finance, match(movie[@[moviesid]:[movie_id]], finance[[movie_id]:[movie_id]],0), match("revenue", finance[#Headers],0))
26
xlookup locking function
=XLOOKUP(Movies[@[movie_id]:[movie_id]],Financials[[#All],[movie_id]:[movie_id]],Financials[[#All],[budget]],"Not Available",0)
27