Ctrl - Home: Is Not Going Home On Sheet For Sorting

Nov 7, 2008

I have several spread sheets I sort daily, now suddenly today when I hit Ctrl / home it wont go home and I can not sort the sheet.

View 7 Replies


ADVERTISEMENT

Cursor Home (equivalent Of CTRL (Home) To Move)

Jul 31, 2009

Does anyone know the equivalent of CTRL (Home) to move the cursor to the a1 position in VBA? I have tried Range(cells(1,1),cells(1,1)).select but with no success

View 3 Replies View Related

Using Ctrl + Home To Have The First Cell Selected

Mar 26, 2009

I have been searching Excel Help for a code that will allow me to program the Ctrl + Home function.

Specifically, I have a macro that leaves the selected cell too far down on the spreadsheet. Instead of making the user scroll up or press the Ctrl + Home keys, I want to write a code at the end of my existing macro.

View 14 Replies View Related

How To Call A Value In Another Sheet Based On Value In Home Sheet

Oct 17, 2013

I have a database of pricing codes made up of several sheets. One of the sheets has a table of discounts. Each genre of product is assigned a code that determines the discount. My pricing code sheets include the discount codes. I want to use the discount code in the pricing code tables to call on the discount table and populate a cell in the pricing table with the discount multiplier. So...

In Sheet1, Column A has the discount code for whatever product line is in the row. In Sheet14 are all the discount codes and all their respective discounts. I want to take the code and search for it in Sheet14 and then place it in column F for each row of Sheet1. So the code in A1 is "abc". I want to find the row in Sheet14 column A with code "abc" and take the value in column L of that row (the discount multiplier) and place that value in F1. I would have every row of the pricing code tables doing the same thing.

The discount multipliers change often so I want to be able to just drop a new table into Sheet14 with the updated multipliers and have all my other sheets reflect the change without having to manually enter the new multipliers.

View 2 Replies View Related

Chart Hyperlinks: Attach A Macro So That When The Chart Is Clicked It Returns To Sheet - Home

Feb 24, 2007

I know this has been discussed a number of times, but here is my problem
I have three charts in my workbook. I want to attach a macro so that when the chart is clicked it returns to Sheet - Home. I have using the following:
worksheets("Home").activate. But after I protect each chart and the workbook, and save and exit. When I reload the Workbook it has forgotten the assigned macros and nothing happens.

View 7 Replies View Related

3 Consecutive Home Matches

Oct 29, 2009

I am writing a sports schedule or fixture list. The home teams are in column B and the away teams are in column C.

I want to prevent any team having 3 consecutive home matches. Is there any way a formula can be used to alert me if there are 3 consecutive home matches.

View 9 Replies View Related

Calculate Home Loan Repayments

Jan 8, 2007

I have used the PMT function but this gives me the total to pay per month.
I want to know what the repayments would be and also allow me to add in each one of the periods and extra repayment option.
So if in the year I wanted to pay an extra $100 per month, I would put $100 next to each period as in a particular period(s) I might not have to put in there but want to predict what the amount owing on the house is.
Is this possible or is this too complicated.

View 3 Replies View Related

Locating Home My Documents Folder

Mar 10, 2007

On the computers in my office they have a My Documents folder that is in the directory C:Data. There is also a My Documents folder in the usual windows location C:Documents and Settings etc. Is there a function that will give me the path of the folder that is on the desktop? The macro will be run on computers with the folder in different locations which is why I need to look it up.

View 5 Replies View Related

Macro To Move Cursor To Home Position

Mar 15, 2014

Doing a search function where the cursor is on a row some where (unknown).

I would like to move the cursor to the first column of the spreadsheet.

View 2 Replies View Related

Formula For Budget Salary / Expenses - Considering Take Home Pay

Jul 3, 2014

I am working on a budget spreadsheet and want to find a formula that will automatically tell me what my take home pay is depending on the yearly salary and see if covers my expenses (linked to another spreadsheet). It will be easier to budget my expenses depending on my salary. My attempts to create IF and = haven't worked.

View 2 Replies View Related

Default Ribbon To Open Custom Tab Not Home Tab

Jul 15, 2014

I created a custom tab withthe UI editor into my personal sheet which is set as startup and I want to have this tab automaticly shown when it is opened.

So when the workbook is opened I would like the show the tab Andre rather than the home tab.

View 4 Replies View Related

Vista Home Premium - 2007 Office

Feb 15, 2009

I have an older laptop with XP and 2007 Office / Excel this works, with the new laptop doesn't work?

basically - I open a new spreadsheet - blank - just basic

I used to be able to click the data tab, then click From Access, then enter my URL to an access database on my website and BAM my data would populate in cell A1

with VISTA - I get the same error over and over again, tried a different XP machine, no problem? What gives?

error box states: Microsoft Office Excel cannot access the file [url]
there are several possible reasons.

the file name or path does not exist
the file is being used
workbook has the same name

I'm starting to really hate VISTA after about 3hrs with this new laptop!

View 9 Replies View Related

Changing Home Selection, VBA, Click Timebar

Jun 6, 2006

Found the wonderful code here at Ozgrid and would like to change the return to home selection.

Private Sub Worksheet_SelectionChange(ByVal Target As Range)
If Not Application.Intersect(Range("d4:Ad104"), Target) Is Nothing Then
Int_color = Target.Interior.ColorIndex
Select Case Int_color
Case xlNone
'Question, what does "xlNone" do?
Target.Interior.ColorIndex = 3
Target.Font.ColorIndex = 3
Target.Value = "true"
'Range("A1").Select - would like to change this to move the selection to
'the present row clicked, column c. If I click on G9 the selection returns
'to C9.
Case Else
Target.Interior.ColorIndex = xlNone
Target.Value = "false"

End Select
End If

End Sub

View 2 Replies View Related

Home Accounts Formula - Retrieve And Add Data ($) From One Column

Aug 25, 2014

I have a category field, and a money spent field in a table.

Category Money spent
1 $12
2 $19
2 $122
1 $5
4 $65
5 $34
5 $12
3 $26

Category 1: $17
Category 2: $$$
and so on..

So I'm looking for a formula that returns information to one cell. A formula that looks if in 'this' column you see the category code '1' for example, then return to me the money spent for ALL the 1's. It should return $17...

The table above is small just for demo purpose, my table has 8 category codes at the moment and the number of rows can be between 15 and 50 I guess... it's a monthly break down.

I would like to see how much is spent in total for each category...

In addition if possible, can this be done for two separate tables... We are two people, and I have two table recording expenditure.

So the formula would need to, from these tables:

Person A Person B
Category Money spent Category Money spent
1 $12 2 $14
2 $192 4 $25
2 $122 4 $65
1 $5 1 $32
4 $65 3 $75
5 $34 3 $85
5 $12 2 $12
3 $26 2 $11

Category 1: $49
Category 2: $$$
and so on...

Look up in both tables, search the two category columns for category '1' for example, then return all the $'s added together... So for Category 1 now it would show $49...

View 8 Replies View Related

Excel 2013 :: Hide Line One When Title Bar Shows In Home Tab?

Oct 14, 2013

When using 2013 Excel in the Home tab, line 1 is not visible. Using the File tab will show line one, but the Home title bar is unavailable. Toggling back and forth is not efficient. No one in this office has ever seen an Excel program not display a full page under the title bar in the Home tab.

View 1 Replies View Related

Excel 2010 :: Modify Values In Short List Of Currencies In Home / Number Toolbar

Jun 27, 2013

I recently moved to Central America and now am working on models that are either in $ or in the local currency (Q). I do not want to change my default currency value in the regional settings of the control panel because it is more convenient for me to stay in $ but it is a pain everytime I want to set a worksheet in Q and not in $.

So, I am wondering how I can change the default values in the currency drop-down list on the Home toolbar under Numbers in Excel 2010.

Currently, it gives me the change to apply the following currencies:

- $ English (US)
- £ English (UK)
- € Euro (€ 123)
- ¥ Chinese (PRC)
- fr. French (Switzerland)

Instead of either the £, ¥ or fr., I would like to have listed the Q, my other frequently used currency.

View 3 Replies View Related

Working With 2007 Ribbons: Switches The Ribbon To The "Home" Tab

Aug 5, 2008

I need a macro that switches the Ribbon to the "Home" tab.

View 2 Replies View Related

Macro To Paste Values Instead Of Formula When User Uses Ctrl-C And Ctrl-V (no Command Button)

Jun 10, 2013

I was thinking of how the Worksheet_Change(ByVal Target As Range) macro can be used to paste values instead of formula when the user uses Ctrl-C and Ctrl-V. Instead of assigning a macro to a command button for user to activate.

Suppose I have a worksheet where the range ("D7:D56") is where I would want the user to paste his values in it.
I have to factor in the possibility that these values have formulas attached to them, and that the user is not tech-savvy enough to know about the "paste special --> values" functionality of excel, and chooses to use the Ctrl-C, Ctrl-V method instead.

What then appears are ####### which might alarm the user.

Neither would we want the user to press a button (which we can assign the xlpastevalues macro as an alternative) as that adds an extra step for the user. There is also a chance the user might not use the button, or overlooked it.

Is it possible to use the Worksheet_Change(ByVal Target As Range) macro, or sth similar, to paste values instead of formula when user uses Ctrl-C and Ctrl-V?

View 6 Replies View Related

Auto Sorting Of Sheet 1 On Sheet 2?

Mar 22, 2014

1- code that will use to show position (1st, 2nd, 3rd....) based on two criterion in the attached sheet

A-the Student must has 49.5%
B-the student must get a "PASS" remark

2- How can i auto sort the position in descending order in another spread sheet.

View 1 Replies View Related

Sorting Data Into Different Sheet

Mar 19, 2014

I have a continuously growing list of data that I need to sort onto another sheet automatically. The sorting data is always in column A but sometimes is not always in the same format; however the sorting data is always the first 6 digits of the data in the cell. When i add the new data to the first sheet I would like the data to be automatically sorted onto the second sheet with 1 row in between each group of data.

View 2 Replies View Related

Sorting List To A New Sheet

Feb 24, 2006

I have a database being exported to a spreadsheet with over 40 fields (columns) and 1000+ clients (rows). One of the fields (column C) incidates that referral source. I would like to copy & paste the list into sheet 1 and have 5 seperate sheets for each of the 5 different referral sources. So that when I go to sheet 2 the only thing I will see are the clients and their 40 associated fields that are referred (column C) by say "John Smith"

Is there a function or script that will search column C for "John Smith" and then fill in all the 40 fields on sheet 2.

View 11 Replies View Related

Sorting Text Into Another Sheet

Mar 4, 2008

A B
1 List 2 things that went well during the meeting
2 Election of Chair Election of Vice Chair
3 Powerpoint Presentation
4 Presentations were informative Everyone at the meeting took part in Q&A
5
6 Group discussed Gardens Upkeep We were mostly in agreement
7
For each meeting attendee (row) they will give their answer to the question (A1).
Some will write no answer, some 1 answer, some 2 answers.

I need to list these answers in another sheet on seperate rows, thus seperate cells, in one column. Without having a gap between each of the answers on that sheet.

I have been wracking my brains and came upon this site searching via that best loved search engine we all know.
I would be very greatful if anyone could help me here.
I'll be watching this closely, nothing else to do.
so I'll be giving quick replies.

View 9 Replies View Related

Two Tier Sorting In Protected Sheet

May 24, 2014

We are needing to do a two tier sort in a protected spreadsheet. Is this possible?

The two columns that need to be sorted have protected cells between them.

If there a way to ad a button that will automatically do this sort for the user... as in can I add a button some how in one of the empty cells that will do it?

Here is the sheet. [URL] ..........

Looks like I need to sort column A thru Z, except W.

View 1 Replies View Related

Automatically Sorting A Referenced Sheet

Feb 10, 2009

I have a dorm roster on one sheet and the other sheet is an Alpha Roster. I want it to automatically sort alphabetically (column B) . Any time I change the roster, the Alpha Roster sheet doesn't automatically sort, I have to hilight and re-sort it again.

I updated the file, there are 4 tabs at the bottom. 1st Floor, 2nd Floor, and 3rd Floor. I want to have all the names, room numbers, and phases (ph) in alphabetical order on the Alpha roster tab. And when ever I make changes to one of the Floors, it will automatically update it the Alpha Roster.

View 14 Replies View Related

Sorting A-Z Linked List In Same Sheet?

Mar 11, 2009

I have a list of movie titles A3-A9999(Infinity), their disc numbers in B3-B9999(Infinity). The titles being written in text, of course.

All I want to do, is have another list, in the same sheet in D3-D9999 that will be the same list as the original list that I input movies onto, except alphabetical and automatic from when I type in the movie title in the original list. When i just use "=A1, =A2, =A3 ~~~ =A999" in the D cells, then try to sort, it only sorts by the cell numbers, not by the actual text that I want it to.

Is there a way to do this? I know excel relatively well, but I'm definitely a noob compared to experts.

View 4 Replies View Related

Sorting Data Into Another Excel Sheet

Jul 12, 2013

So I have started working for a medical supply company and sorting through the prices and item numbers of thousands of line items is difficult to do manually. We have a computer guy who can take two files and match certain columns up.

For example, I have a file with the Item Code and Our Costs, and a different file with Item Code and a different companies prices (so I know what prices to beat while maintaining a higher margin). Every time I need to do this sorting I need to go to my computer guy and give him the two files to merge them together so he can match the thousands of items of our competitors prices to line them up with our costs for the proper item.

Example is attached as an excel file, although it is a hundredth of the size of many files I work with.

merging and sorting files.xlsx

View 3 Replies View Related

Macro For Sorting A Sheet By Colorization

Nov 26, 2013

I have a sheet with over a thousand part numbers (lines of data) whereby they are uniquely colored.

I am looking for code to allow the Macro to Sort the lines by the color of the line, identical to the Excel provided function. However, in that one- it is tedious to add the levels for the multiple Colors going on and I would like the Macro to perform it all at once.

So, I have five unique colors (Maybe doesn't matter)that remain constant: Red-Color Index:3, Yellow-color Index:6, Lime-Color Index:43, Gold-Color Index:44, and Gray-50%- Color Index:16? (I think).

So- when I run the Macro I would like it to Sort the data and group all the Colored lines (Parts) in series (doesn't matter the color order). In other words if there are 50 part numbers red and 100 part numbers Lime then Rows 1-50 are all the Filtered Red parts and Rows 51-150 are all the Lime and so on for all the other Colors.

View 1 Replies View Related

Sorting A Very Hidden Sheet That Is Not Active

Jan 29, 2007

I have tried to use absolute references (perhaps I didn't do it right) but it didn't work. Below is the code that does work but I need to first make the sheet visible then activate it.
Sub Row_Sort(tmpsheet As String)
' Sort the first 4 columns of the tmpsheet sheet

Dim tmprng As Range
Dim OldActiveSheet As Worksheet

' Activate the desired workbook (in this case Linewkbk)
Workbooks(LineWkbk.Name).Activate

' Save old active sheet
Set OldActiveSheet = ActiveSheet.............

View 9 Replies View Related

Using Ctrl+M As Shortcut

Nov 6, 2008

i have tried using the letter M as a shortcut key (because it is to activate a "Move" function) but unfortunately it doesn't work. I gather from this that not all of the keys are available as shortcut keys presumably because they already have function.

Is there a way around this? and/or is there a list somewhere of the available shortcut keys?

View 13 Replies View Related

CTRL + TAB Not Working

Feb 27, 2007

the keyboard shortcut to switch between workbooks in the application seems to have stopped working on my boss' machine.

View 4 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved