how to reverse the order in Excel 2010 [closed] - excel

Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 9 years ago.
Improve this question
if i have the following data in excel.
Date: Stock Price:
12/12/2012 89.90
03/10/2012 90.88
04/12/2010 72.11
05/06/2008 76.88
How can I reverse both the date and the stock price? So I start from 05/06/2008 with stock price of 76.88 to 12/12/2012 with the stock price 89.90?
Please help step by step.
So far when I tried to reverse the date solely, it only reverse year by year, so I get
03/10/2012
12/12/2012
04/12/2010
05/06/2008
And this is not even correct, and I dont know how to reverse both date and the stock price.
I am using microsoft excel 2010 version.

As chuff indicated in the comment, all you need to do is to sort your data using Excel's sort functionality:
Click on a cell in your table
Click on Data tab->Sort
Set the dialog as follows:
You'll end up with the sorted list:

Related

Copy selection of numbers in a particular order into Excel [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 3 years ago.
Improve this question
In one part of my spreadsheet, I am calculating odds ratios. I have one column (V) with the OR, and then W and X with the confidence intervals. In another column (M), I am trying to get excel to list this information in one cell.
i.e.
0.78 (0.25, 2.46)
I have just been copying the information, but this is prone to errors and takes ages, so I am looking for a better way.
Any ideas?
Try a formula like:
=[#columnV]&"("&[#columnW]&","&[#columnX]&")"
This should concatenate row wise down the entire table with the desired format.

Excel IF formula with specific [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 4 years ago.
Improve this question
I have a formula that is calculating if a certain cell is greater than 0 then multiplying 2 cells together. I only want to show the result though within one cell and then after that time the following cells are to be nought. At the moment I have cells with the same amount in e.g. Jan = £7, Feb = £7 but I need Feb to be 0 as Jan already has a sum in it.
=IF(M1>0,$F$1*$F$9,0)
Try using the AND and OR commands...
=IF(AND(M1>0, OR(ISBLANK(janCell),janCell=0)),$F$1*$F$9, 0)
Note that you haven't provided a great deal of useful information there. We know nothing about the structure of your work sheet, where the month results are stored etc. You should think about your question more before writing it up.
Hope the formula above helps.

if statement, need 3 results [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
Asked this question earlier, hopefully I can craft it better.
I have 5 columns each, that could have dates entered. If the date is less than 14 days, the status column shows "current" if false it shows "overdue". But I need to add: if any date is entered into the 5th column the status column will show "complete"
Right now this is what I'm envisioning...
but what you're after and your current setup is very unclear...

Excel How to calculate exchanged price according to monthly exchange rate [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
I would like to get formula which can calculate currency value according to specified currency exchange rate in specified month.
If date purchase is 14/02/2013 then get currency exchange from february and use to divide USD price to get EUR price.
Please see example here:
https://docs.google.com/spreadsheet/ccc?key=0AjSYvGqCVD59dDU0ME4waEl6d21Uend5TE5JSnZVMUE&usp=sharing
Try to use this formula:
=D2*OFFSET($A$1,MONTH(C2),1)

MS Excel program [closed]

Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 9 years ago.
Improve this question
I am creating a invoice in Excel.
I want to to get the total to be calculated from dropdown.
That means if I select tax inclusive it should show total amount as subtotal amount
and if i select exclusive it should calculate..
The amount I want the function to be applied to the dropdown how is it possible,,
img url below
https://lh3.googleusercontent.com/-act7lJiprYo/UBUdEKFtroI/AAAAAAAAAEc/r_j3lCzbvxA/s800/snap.png
thanks!
=If(e37='inclusive';sum(f3:f35)*1,36;sum(f3:f35))
assuming that g3 to g35 is the range of numbers to use in the calculation and taxes are 36% and the term inclusive should be exact what ia used in the select list of course

Resources