Formula to create two-sided flash card

maizen

New Member
Joined
Sep 4, 2011
Messages
19
Hello,

I am in need of your expertise. I am a basic Excel user. I am making flash cards for students to learn state capitals. I have states in one column and corresponding capitals in next column. I am going to merge these into a Publisher Document that will make the flash cards.
example:

<TABLE cellPadding=2 width=250 border=1><TBODY><TR><TD>State </TD><TD>Capital</TD></TR><TR><TD>Alabama </TD><TD>Montgomery</TD></TR><TR><TD>Alaska </TD><TD>Juneau</TD></TR><TR><TD>Arizona </TD><TD>Phoenix</TD></TR><TR><TD>Arkansas </TD><TD>Little Rock</TD></TR><TR><TD>California </TD><TD>Sacramento</TD></TR><TR><TD>Colorado </TD><TD>Denver</TD></TR></TBODY></TABLE>

The problem I have is that when I print out the back side of the card it displays the wrong capital. Alabama ends up with Juneau and Alaska has Montgomery. When the front side with the states is flipped over the image becomes reversed. The capitals need to be reversed on the spreadsheet so that they correspond to the right state when they are printed on the back of the card. I'm also going to be using this for world geography. So it would be great to have formula rather than reversing them each manually.

Thanks for your input.
 

Excel Facts

What is the last column in Excel?
Excel columns run from A to Z, AA to AZ, AAA to XFD. The last column is XFD.
Maizen,
you didn't write about what happens to other capitals in the list.
I am assuming the words have to be flipped on alternate rows.
Try this:
Excel Workbook
ABCDE
1StateCapitalStateCapital
2AlabamaMontgomeryAlabamaMontgomery
3AlaskaJuneauJuneauAlaska
4ArizonaPhoenixArizonaPhoenix
5ArkansasLittle RockLittle RockArkansas
6CaliforniaSacramentoCaliforniaSacramento
7ColoradoDenverDenverColorado
Sheet1
Excel 2003
Cell Formulas
RangeFormula
D2=IF(MOD(ROW(),2),B2,A2)
E2=IF(MOD(ROW(),2),A2,B2)



Now instead of picking data from col A-B, pick from col D-E.
The formulas can be entered on the 2nd row then copied down.
HTH
 
Upvote 0

Forum statistics

Threads
1,224,547
Messages
6,179,436
Members
452,915
Latest member
hannnahheileen

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top