Front Office Football Central  

Go Back   Front Office Football Central > Archives > FOFC Archive
Register FAQ Members List Calendar Mark Forums Read Statistics

Reply
 
Thread Tools
Old 03-17-2008, 01:04 PM   #1
Suburban Rhythm
Pro Starter
 
Join Date: Jan 2002
Location: Pittsburgh
PING - Excel gurus

I've probably done this 100 times, and drawing a blank

How do I insert a 'check box' into a cell?
__________________
"Do you guys play fast tempos with odd time signatures?"
"Yeah"
"Cool!!"

Suburban Rhythm is offline   Reply With Quote
Old 03-17-2008, 01:13 PM   #2
Suburban Rhythm
Pro Starter
 
Join Date: Jan 2002
Location: Pittsburgh
Solved....View-Toolbars-Forms.....it's Monday
__________________
"Do you guys play fast tempos with odd time signatures?"
"Yeah"
"Cool!!"
Suburban Rhythm is offline   Reply With Quote
Old 08-07-2008, 02:40 PM   #3
DaddyTorgo
Hall Of Famer
 
Join Date: Oct 2002
Location: Massachusetts
BUMPITY!

question for excel gurus!

I have 2 spreadsheets. one has a list of values (6 digit numbers). the second has the same 6 digit numbers as well as a country name linked to the numbers. i want to move the country names into the first spreadsheet (which also has additional data).

Someone advised me to use a vlookup to do so. Thought maybe one of our resident excel gurus could guide me through how i setup the formula to do that - I've actually never used one before.
DaddyTorgo is offline   Reply With Quote
Old 08-07-2008, 02:57 PM   #4
Passacaglia
Coordinator
 
Join Date: Oct 2000
Location: Big Ten Country
Assuming the values are in Column A of both tabs, and the country name is in Column B:

vlookup(A1,'[File name]Tab name'!$A$1:$B$10000,2) -- this would go in the column where you want the country names to go.

Keep in mind, the spreadsheets are now linked, so you'll need to recognize that if you move files around.

Last edited by Passacaglia : 08-07-2008 at 02:59 PM.
Passacaglia is offline   Reply With Quote
Old 08-07-2008, 07:12 PM   #5
DaddyTorgo
Hall Of Famer
 
Join Date: Oct 2002
Location: Massachusetts
Quote:
Originally Posted by Passacaglia View Post
Assuming the values are in Column A of both tabs, and the country name is in Column B:

vlookup(A1,'[File name]Tab name'!$A$1:$B$10000,2) -- this would go in the column where you want the country names to go.

Keep in mind, the spreadsheets are now linked, so you'll need to recognize that if you move files around.

awesome. You just might be a lifesaver Pass!
__________________
If I've ever helped you and you'd like to buy me a coffee, or just to say thanks, I have my Bitcoin and Ethereum addressed listed below :)
BTC: bc1qykhsfyn9vw4ntqfgr0svj4n9tjdgufryh2pxn5
ETH: 0x2AcdC5cd88EA537063553F5b240073bE067BaCa9
DaddyTorgo is offline   Reply With Quote
Old 08-07-2008, 09:50 PM   #6
finkenst
College Benchwarmer
 
Join Date: Jul 2003
Location: usually sunny SoCal
Quote:
Originally Posted by Passacaglia View Post
Assuming the values are in Column A of both tabs, and the country name is in Column B:

vlookup(A1,'[File name]Tab name'!$A$1:$B$10000,2) -- this would go in the column where you want the country names to go.

Keep in mind, the spreadsheets are now linked, so you'll need to recognize that if you move files around.

or just the copy data into another worksheet/workbook and paste as values and not formulae.
__________________
Quote:
Originally Posted by mijb#19
Switzerland is independant and will try to do so until the apacolypse is upon us.
finkenst is offline   Reply With Quote
Old 08-07-2008, 10:09 PM   #7
Passacaglia
Coordinator
 
Join Date: Oct 2000
Location: Big Ten Country
Quote:
Originally Posted by finkenst View Post
or just the copy data into another worksheet/workbook and paste as values and not formulae.


Right -- he loses some functionality if he does that, but it's certainly an option.
Passacaglia is offline   Reply With Quote
Old 08-07-2008, 10:14 PM   #8
DaddyTorgo
Hall Of Famer
 
Join Date: Oct 2002
Location: Massachusetts
that's probably what i'll do (the copying). I don't need the functionality, just the raw values
DaddyTorgo is offline   Reply With Quote
Old 08-07-2008, 10:14 PM   #9
DaddyTorgo
Hall Of Famer
 
Join Date: Oct 2002
Location: Massachusetts
thanks guys. I will give it a go tomorrow mid-morning, might end up having to come back here whining about getting it to work though! lol
DaddyTorgo is offline   Reply With Quote
Old 08-08-2008, 10:41 AM   #10
DaddyTorgo
Hall Of Famer
 
Join Date: Oct 2002
Location: Massachusetts
bah - can't get it to lookup right
__________________
If I've ever helped you and you'd like to buy me a coffee, or just to say thanks, I have my Bitcoin and Ethereum addressed listed below :)
BTC: bc1qykhsfyn9vw4ntqfgr0svj4n9tjdgufryh2pxn5
ETH: 0x2AcdC5cd88EA537063553F5b240073bE067BaCa9
DaddyTorgo is offline   Reply With Quote
Old 08-08-2008, 10:44 AM   #11
DaddyTorgo
Hall Of Famer
 
Join Date: Oct 2002
Location: Massachusetts
both values i'm looking up by are in column B. the column with the data i want to import is column F. and to make it easy i put both of the spreadsheets together into the same worksheet so all i had to do was put in the tab name.

I copied Pass's formula exactly, substituting B's for A's and the F for the B and somehow I ended up with a value from column C brought into the spreadsheet.

=VLOOKUP(B2,LISTE!$B$1:$F$10000,2)

how's it getting a value from column c in there??

edit - no matter what it's pulling values from column c - weird. maybe i can try putting the countries in column c and see if that works

Last edited by DaddyTorgo : 08-08-2008 at 10:48 AM.
DaddyTorgo is offline   Reply With Quote
Old 08-08-2008, 10:49 AM   #12
Passacaglia
Coordinator
 
Join Date: Oct 2000
Location: Big Ten Country
It's because of the 2. That's specifying which column in your range (which starts with B, and ends with F, per your formula).
Passacaglia is offline   Reply With Quote
Old 08-08-2008, 10:49 AM   #13
Passacaglia
Coordinator
 
Join Date: Oct 2000
Location: Big Ten Country
So B=1, C=2, D=3, E=4, F=5. Change that 2 to a 5.
Passacaglia is offline   Reply With Quote
Old 08-08-2008, 10:52 AM   #14
DaddyTorgo
Hall Of Famer
 
Join Date: Oct 2002
Location: Massachusetts
okay wait i'm confused - changing the 2 to a 5 will fix it? will try that right now
__________________
If I've ever helped you and you'd like to buy me a coffee, or just to say thanks, I have my Bitcoin and Ethereum addressed listed below :)
BTC: bc1qykhsfyn9vw4ntqfgr0svj4n9tjdgufryh2pxn5
ETH: 0x2AcdC5cd88EA537063553F5b240073bE067BaCa9
DaddyTorgo is offline   Reply With Quote
Old 08-08-2008, 10:53 AM   #15
DaddyTorgo
Hall Of Famer
 
Join Date: Oct 2002
Location: Massachusetts
okay that seems to work for some, but it's still not getting all of them right - like it has one company that i can do a find and clearly see is in japan, but it's pulling up US...
__________________
If I've ever helped you and you'd like to buy me a coffee, or just to say thanks, I have my Bitcoin and Ethereum addressed listed below :)
BTC: bc1qykhsfyn9vw4ntqfgr0svj4n9tjdgufryh2pxn5
ETH: 0x2AcdC5cd88EA537063553F5b240073bE067BaCa9
DaddyTorgo is offline   Reply With Quote
Old 08-08-2008, 10:56 AM   #16
Passacaglia
Coordinator
 
Join Date: Oct 2000
Location: Big Ten Country
I'm not sure about that. My best guess is to add a 0 after the 5.

=VLOOKUP(B2,LISTE!$B$1:$F$10000,5,0)
Passacaglia is offline   Reply With Quote
Old 08-08-2008, 10:57 AM   #17
Passacaglia
Coordinator
 
Join Date: Oct 2000
Location: Big Ten Country
That changes the function from finding an approximate match to an exact match -- are your 6-digit numbers pretty similar?
Passacaglia is offline   Reply With Quote
Old 08-08-2008, 10:57 AM   #18
DaddyTorgo
Hall Of Famer
 
Join Date: Oct 2002
Location: Massachusetts
ohhh i do believe that seems to have helped
DaddyTorgo is offline   Reply With Quote
Old 08-08-2008, 10:57 AM   #19
DaddyTorgo
Hall Of Famer
 
Join Date: Oct 2002
Location: Massachusetts
they are very similar - exact matching would be what i need - they are unique 6 digit ID codes
DaddyTorgo is offline   Reply With Quote
Old 08-08-2008, 10:59 AM   #20
DaddyTorgo
Hall Of Famer
 
Join Date: Oct 2002
Location: Massachusetts
Pass - I owe you one man. Next time I'm in your neck of the woods or something.
DaddyTorgo is offline   Reply With Quote
Old 08-08-2008, 11:00 AM   #21
DaddyTorgo
Hall Of Famer
 
Join Date: Oct 2002
Location: Massachusetts
that absolutely did it
DaddyTorgo is offline   Reply With Quote
Old 08-08-2008, 11:11 AM   #22
Passacaglia
Coordinator
 
Join Date: Oct 2000
Location: Big Ten Country
Awesome!
Passacaglia is offline   Reply With Quote
Old 08-11-2008, 09:39 AM   #23
Suburban Rhythm
Pro Starter
 
Join Date: Jan 2002
Location: Pittsburgh
OK, another one. And this seems a little more complicated than the poor one i started this thread with.

I've got a spreadsheet that contains data across columns A - W. All cells have a value-- EXCEPT certain cells in column F.

Trying to create a macro that makes the data all pretty for the client. I am good with all the formatting, except inserting rows to break apart the data.

I currently just have the macro choosing the lines that need the inserted row (about 500 lines). However, as soon as I have a row added/deleted from the data (running in another application and exported to Excel), my rows will be jacked up.

Is there a way I can the macro "look" to the empty cells in column F, and know that is where I want the blank rows inserted?

Thanks
__________________
"Do you guys play fast tempos with odd time signatures?"
"Yeah"
"Cool!!"
Suburban Rhythm is offline   Reply With Quote
Old 08-11-2008, 10:19 AM   #24
gottimd
Dearly Missed
(9/25/77-12/23/08)
 
Join Date: Nov 2003
Location: DC Suburbs
Do you mean an ISBLANK statment?

=IF(ISBLANK(A1),"Y","")
__________________
NAFL New Orleans Saints GM/Co-Commish
MP Career Record: 114-85
NAFL Super Bowl XI Champs
In memory of Gavin Anthony: 7/22/08-7/26/08
gottimd is offline   Reply With Quote
Old 08-11-2008, 10:45 AM   #25
Suburban Rhythm
Pro Starter
 
Join Date: Jan 2002
Location: Pittsburgh
Sort of...except I do not want to populate the cell if it is blank.

For example all cells are filled with data A1: F20. Except for C8 and C15.
So I want to insert a row above row 8 and row 15.

Would I be able to use an ISBLANK statement? Can I use =IF(ISBLANK(C1:C500),"XXXXXXXX", "")

With the XXXXXXXX representing the row insert function?

Thanks
__________________
"Do you guys play fast tempos with odd time signatures?"
"Yeah"
"Cool!!"
Suburban Rhythm is offline   Reply With Quote
Reply


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is On
Forum Jump


All times are GMT -5. The time now is 09:54 PM.



Powered by vBulletin Version 3.6.0
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.