Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 8 years ago.
Improve this question
i'm using a pivot table and i'm trying to compare summed value of a month of two years.
![Example][1]
How can i add (using pivot methods) a column with the % difference between these any year-month and the month of the previous year?
note that i I can have more years.
Here is an example of the output of a row that i would like to obtain.
![enter image description here][2]
Here is how the OP solved the issue:
Related
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 4 years ago.
Improve this question
The excel spreadsheet at my work has a column for date and I'm trying to find out which date shows up the most. Is there a way to do that?
As can be found here, assume your dates are in the range, of say, A2:A1000, you could use the following formula:
=INDEX(A2:A1000,MODE(MATCH(A2:A1000,A2:A1000,0)))
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 5 years ago.
Improve this question
In a normal table, I can easily filter the Date Column and specify multiple criteria. Example Data is after X AND is after Y.
How can I do this in a Pivot Table?
Example
Thanks
It isn't supported. Here is a workaround. Create a column in your source data which duplicates the date data exactly, for example, date1 and date2. Then you can apply one filter to each field.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 8 years ago.
Improve this question
I have a very large dataset (100,000+ records) and one of the fields is a date field that is in this format: mm/dd/yyyy. I have tried using "=YEAR(A1)" to get the year value from the column A which has the original date to column B with only the year date. It just gives me a very weird date like "6/31/1905" but my dates are definitely not in that range. Any other advice?
Format the cell containing the formula:
=YEAR(A1)
as General
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 8 years ago.
Improve this question
I have a column in Excel that holds data in Euros, then another column for description and third column for category.
I want to count all EUROS for each Category. How much was spend for each category.
Please check my image:
If you just want to know the sum for a particular category, you can use the SUMIF function (=SUMIF(D:D,"...",C:C))
If you want to know the sums for each category, you can use a pivot table that summarizes with sum
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 9 years ago.
Improve this question
I need to take the value corresponding to a certain date, and use it in another table or sheet:
In one sheet, I have two columns, one for the dates (every day of the year) and the other for the fixed values.
In the other sheet, I need to take those fixed values according to the date, which I enter manually.
Tried using the IF function with no success.
Here is an example using =VLOOKUP: