Menu .Id Number List?
May 21, 2006
Is there a list with all the .Id number of menu items? I am wondering about this because if I use .Captions they will be different in English than, for example, in French and I'm afraid my code won't make sense anymore. Also, are the menu .Id numbers different for Mac-Os X Excel users to those using Windows?
View 2 Replies
ADVERTISEMENT
Oct 18, 2008
I have a column with various drop down menu boxes and I need to add another selection to the menu list. My problem is, it's been so long since I did the drop downs, I have forgotten how to do it..
View 3 Replies
View Related
Jun 4, 2006
Why is the List option not in my Data menu? Using Excel 2003. I want to be able to create a new list, this option is not available on the List toolbar.
View 2 Replies
View Related
Aug 22, 2013
I have a successful dropdown menu that removes items that have already been selected through the dropdown list, however, I need it to be able to handle IDENTICAL items. At the moment, it can only handle unique items.
I'm trying to create a Rota Planner. I have a selection of shifts that need to be selected for each day. Some shifts are repeated (meaning that there may be 4 members of staff on the same shift). As ONE of each of the 4 shifts are selected, I then want only 3 to be displayed in the dropdown menu to be selected, until all of them have been selected.
I've tried to break apart the code that provides dynamic dropdown list for UNIQUE values but I'm tearing my hair out and getting nowhere.
View 4 Replies
View Related
Nov 5, 2009
need to create a simple list: simliar to how windows drivers appear Column A: (example A1= Make and Model#)
-then 5 columns based on which make/model is selected to appear
-only shows the selected printer's data
i'm having issues having rows in lists and using names in excel 2007.
-i have raw data but its very ugly when sharing... would like to basically:
a. select the item
b. have the item's data (several columns) show up
example:
select A1
then: B1, C1, D1, E1 and F1 appear
any ideas for a template or where to start?
View 8 Replies
View Related
Jun 2, 2006
I have create a custom menu and want to add a choice and a subchoice that will guide the user to insert a number in an inputbox or under a list. Then the user's selected number it will be used as parameter for a vba code.
Eg.:
The choice is: How many rows will be marked
The subchoice : 10 (default value)
What i want is the following:
If the user choose the above subchoice then it has to be appeared an inputbox or something like that in which he has to insert a number, eg. 45. After that the choice must shows
The choice: How many rows will be marked
The subchoice: 45
This parameter must be active all the time that the user uses the workbook. At the end, if the user saves the workbook, the next time it will be opened, the subchoice must have the value 45.
Look at the attachment image to see exactly what i want
Here's the code. Just copy it under a module
Option Explicit
Dim cbMenu As CommandBarControl
Dim cbSubMenu As CommandBarControl
Public MenuSeries
View 9 Replies
View Related
Aug 13, 2013
I want to select Work Type and it will then look at the list data and auto fill the highlight cells.
View 5 Replies
View Related
Dec 16, 2013
Is it possible on Excel to make a drop down menu which picks records out of a list?
I've a big spreadsheet. Thousands of records. About 100 responsible are listed responsible for them. I've highlighted stuff for them to fix, I'll be emailing it out to them, and they'll need to isolate the dozens of records they are each responsible for.
They are, erm, technologically challenged. I want to keep it simple, put one menu on the screen and say
'Pick your name from the list.'
George W picks himself, and then it lists his records but not anybody else's.
Can Excel do that? (Rather, probably, but where do I start?)
View 7 Replies
View Related
May 2, 2014
I have a Drop-Down Menu that looks like:
BOS
PIT
COL
NYR
using List with source =Lists!$B$2:$B$9, which is just the validation list
My Table:
Team Player
BOS Bergeron
BOS Krejci
NYR Nash
... ...
My goal is to limit the end user from choosing BOS more than two times from the drop down menu
View 4 Replies
View Related
Sep 28, 2007
I have customised the right click menu's for this spreadsheet and currently it is all hard coded. I was wondering if it is possible to dynamically modify the right click menu? The code currently has right click buttons for each staff member, and when clicked other actions are performed. I have added a "Staff" sheet and was wondering if there is a way the code can reference that sheet and create the list based on those entries for example, when new staff join or other staff leave?
I'm sure that there is a better way to go about this, perhaps a For... Next loop but I don't know enough about it. In the mean time, I will keep bashing away at it in hopes of a brainwave... it's a Friday before a long weekend and I think my brain has decided its holiday time.
Option Explicit
Private Sub Workbook_Deactivate()
On Error Resume Next
With Application
. CommandBars("Cell").Controls("Add Nick").Delete
.CommandBars("Cell").Controls("Add Toby").Delete
.CommandBars("Cell").Controls("Add Ben").Delete
.CommandBars("Cell").Controls("Add Matt").Delete
.CommandBars("Cell").Controls("Add Zoe").Delete
.CommandBars("Cell").Controls("Add Anne").Delete
.CommandBars("Cell").Controls("Add Craig").Delete
.CommandBars("Cell").Controls("Add Unknown (1)").Delete
.CommandBars("Cell").Controls("Add Unknown (2)").Delete
.CommandBars("Cell").Controls("Remove").Delete
End With
With Application
.CommandBars("Cell").Controls("Cut").Visible = True
.CommandBars("Cell").Controls("Copy").Visible = True...............................
View 2 Replies
View Related
Sep 4, 2013
I have a drop down menu using data validation and the values are B,C,D
I want to keep the letter in a cell, but make each one become number, so B=5, C=10, D=20
I have another dropo down menu that contains 6,10,16
What I require is that once the 2 drop down menus have 'values selected' I need to multiply the 2 cells together
so for example
If B and 6 was selected, I require the 3rd cell to be 5*6 so what is the formula?
View 1 Replies
View Related
Feb 11, 2009
I am trying to figure out how to reference a number of cells from accessing one drop down menu. I have a list of products with pricing and logistics. I would like to have the drop down menu in another sheet that will access a specific product and the pricing that goes with it. I know how to do it if i wanted 100 seperate sheets, but I would really love an all-inclusive page that refreshes with the drop down menu. I have a copy of the file if that i hope will be helpful with colour coded cell references.
View 2 Replies
View Related
Dec 8, 2013
Is it possible to create a drop down menu where additional information can be added then tallied up in a separate table?
I would like to create a menu representing "tasks" where an amount of "time" can be designated per menu for my employees to select and fill. I would like this information to then be tallied elsewhere so I can keep track of our efficiency.
I've attached the excel file to give a better idea of what I'm trying to accomplish.
View 9 Replies
View Related
Jun 24, 2014
I have created a sub to add new controls to the "Cell" shortcut menu. Can I remove the standard "Cell" shortcut menu controls? if so how do you do it?
[Code] ......
View 4 Replies
View Related
Oct 20, 2009
I have a workbook with multiple sheets. Is there a tool that creates a menu bar or code that I can add that would support navigation?
My goal is to have something with approximately 4 options (buttons?). They would link to 4 different sheets that serve as indexes within the workbook.
I know I can add a control like a button to a given sheet that would take the user to given sheet when clicked, but can I make the button 'float' above all the sheets, or add to a menu bar, or something? I just don't want to have to add the button to every sheet in the workbook.
I am looking for something simple/easy, and am not looking for anybody to do the work. I just have no idea on how to approach the problem.
View 11 Replies
View Related
Jul 2, 2009
I'm adding a menu selection to the right-click menu that you get for cells. I can add and remove the menu option but, when I try to execute the macro tied to the menu, I get "the macro...cannot be found". I can't figure out what appears to be a "pathing problem". I'm sure it's simple but...
Here's the
View 4 Replies
View Related
Mar 27, 2009
I have actually got the Window menu in the Main Menu Bar of excel deleted using below command.
Application.CommandBars("Worksheet Menu Bar").Controls("Window").Delete
View 9 Replies
View Related
Jul 15, 2006
Now this is something which I dont even know if it can be done, but its something which I would use, a lot. When clicking on a button, like a normal button from the control toolbox, is it possible to open a menu from this? So I click on the button i made called "accounts" and this opens a menu next to it with different options.
View 5 Replies
View Related
Apr 26, 2007
my worksheet menu bar is displaying the ' Chart' menu no matter what I do. Not only do I have no charts in the workbook, (verified this by: )
For Each ws In Worksheets
ws.Select
MsgBox ActiveSheet.ChartObjects.Count
Next ws
but adding worksheets, selecting various parts of a worksheet, creating a chart and deleting it, and everything else I've tried has no effect.
One interesting thing - the first chart I added (to test if it would 'unstick' itself upon deletion of the new chart) was named 'Chart 2', implying there was a chart1 that existed previously.... although I am fairly certain I never added a chart to this workbook at any point.
Also, the menu bar is working fine in other workbooks, and changes to chart and back to data like normal.
View 6 Replies
View Related
May 4, 2009
I have a sheet which details specific card numbers in Column A, and the date and place of transaction in the Column B. This very long list contains multiple entries for each card number. What I would like to do is use Sheet2 to list each card number and the number of times it appears in the list.
View 4 Replies
View Related
May 20, 2006
Suppose I delete a (unknown) number of items from the Worksheet Menu Bar. This can vary because of the fact that my excel sheet is being used by a different number of people, all with a different Worksheet Menu Bar configuration. Is there a way of counting how many Menu items are still left in the Worksheet Menu Bar?
So, suppose all that is left (after using the program) in the Worksheet Menu Bar are Excel, File, Tools, Help. How can the porgram find out that there are only 4 items in the menu?
View 3 Replies
View Related
Jul 8, 2007
I am taking an EXCEL(online) class and in my current assignment i am to create a 'list' for sorting and querying. However i cannot find the 'list' option, under my DATA option on the toolbar. I have tried all my toolbars and shortcuts but I am unable to find it anywhere.
View 9 Replies
View Related
Apr 27, 2014
I'm making a Excel 2013 spreadsheet that has formula in a column that auto enters a number 1-40 when something is entered to the left of that cell. There are 300 rows in the spreadsheet. I would like to make a drop down list in a column cell to the right that would delete that number in that cell from the drop down list. For example cell C1 has 39, that 39 then is deleted from the drop down list. C2 has 22 in it, click on the drop down list cell and it shows 1-40 less 39 and 22.
View 11 Replies
View Related
Jun 26, 2014
I have a requirement where I want my list should auto increment with number only.
For example: I want to fill below text in cell and when I drag the cell( Along the column A) and fill the rows downward it should automaticallly incremented.
Data in one cell say (A1) is like 001_TCO_CM, now I want to drag data present in cell A1 and wants data in cell A2, A3, A4 etc... it should get increment like
A2 = 002_TCO_CM
A3 = 003_TCO_CM
A4 = 004_TCO_CM
and so on...any method or way present in Excel 2003 so that my series should get auto filled.
View 7 Replies
View Related
Jul 30, 2012
I want to count the number of times any given number appears either as a consecutive group or singularly.
To give you a context I monitor windturbines and for any given fault code I wish to count the number of events it occurs in a month. Now it could be for 1 hour then clear the next then back for 17 then claer again. That would be 2 events!
NB the data is in seperate coulumns per turbine.
View 7 Replies
View Related
Jun 21, 2007
I have made an excel addin named "INDNUMFOR" and want that this should display under "Data" of main menu bar. thus, a new item (sub menu) should appear naed "IndNumFor" under Data main menu.
View 9 Replies
View Related
Dec 3, 2013
I have uploaded an example file and I need a formula to sum only the entries that are listed on the lookup sheet which match the contract name.
In order to do this the formula will need to look in column G and if there is a match on the lookup sheet then sum column Q. It would also need to match the contract name column U with Column B
I have provided an example of what I need as my description is not very clear.
The formulas would be required in the pink cells.
View 8 Replies
View Related
Jan 25, 2006
say I had a list of dates all in a column and beside it I had another column and in this one I want a formula to say were abouts in the list the cell next to it is for example in cell D2 i want a formula that tells me what position in the list the date in cell C2 is.
View 9 Replies
View Related
May 3, 2014
I have two workbook, first file is "Record Validator.xlsx", I have the below information on Sheet1
[A][B][C]
[3]IDNumEmpNameScores
[4]A1234Jane80
[5]B2342Sarah90
[6]G5466Joseph89
[7]H5565Sherwin98
[8]X6676Harold94
[9]G5546Janet87
[10]X6678Aileen94
[11]J7787Jorge86
Second file is Cleaner.xlsx, and I have the below information on Sheet1
[J]
IDNum
[11]A1234
[12]B2342
[13]G5466
[14]
[15] H5565
[16]G5546
[17]J7787
I need a macro that will delete the entire row in "Record Validator.xlsx" if the IDNum is not present in the cleaner.xlsx.
On the above illustration the desired out put should be like this:
[A][B][C]
[3]IDNumEmpNameScores
[4]A1234Jane80
[5]B2342Sarah90
[6]G5466Joseph89
[7]H5565Sherwin98
[8]G5546Janet87
[9]J7787Jorge86
Few things to note,
-on cleaner.xlsx[Sheet1], the list is within J11:J25, there might be a blank cell within that range as shown above
-Record Validator.xlsx[Sheet1], the list is within J3:J120
-Square brackets above represent the column letters and row numbers.
View 6 Replies
View Related
Jul 18, 2006
I have a prob. that shouldn't be so hard but I just cant find the syntax how to do it. I have a drop down list with dynamic content, that is, itīs not an array but the contents will change upon what the user is doing with the user form. Now, I need to find out the row number of the cell with the variable in it.
Ex:
Drop down lost contains "Sarah" in A1, "Pete" in A3, "Bob" in A4, "Sarah" in A5.
When the user chooses Pete and push a button I want the number "3". It could be stored in another cell or whatever. Since the contents will change I cannot use an array or a fixed column.
Private Sub knappen_Click()
Range("D2").Value = cmbBox.??????
End Sub
View 5 Replies
View Related