Problem 38 Data

You might also like

Download as xlsx, pdf, or txt
Download as xlsx, pdf, or txt
You are on page 1of 2

=IF(ISEVEN(ROW()),"",B3&","&B4)

John John,120
120 You are given units sold by each person.
James James,50 For example, John sold 120 units
50 Write a formula that can be copied from C3
Jen Jen,90 to C4:C30that returns in each odd numbered row the
90 name and units sold (like John, 120) and returns
Megan Megan,45 a blank in each odd numbered row.
45 Hint The ISEVEN function tells you if a number is even
Mae Mae,63 and the row() function gives you the number of the current row
63
Lizzie Lizzie,57 13 0 =ROW() =ISEVEN(F13)
57 14 1 =ROW() =ISEVEN(F14)
Ben Ben ,85 15 0 =ROW() =ISEVEN(F15)
85 16 1 =ROW() =ISEVEN(F16)
Katy Katy,45 17 0 =ROW() =ISEVEN(F17)
45 18 1 =ROW() =ISEVEN(F18)
Taylor Taylor,99 19 0 =ROW() =ISEVEN(F19)
99 20 1 =ROW() =ISEVEN(F20)
Justin Justin,33 21 0 =ROW() =ISEVEN(F21)
33
David David,23
23
Julian Julian,45
45
Rachel Rachel,57
57
Bonnie Bonnie,91
91
John120

mber is even
ber of the current row

You might also like