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)))
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
I have Data in one column (m), the data contains a number of blanks & I want to be able to count the number of unique occurances that begin with the number 2.
Use:
=SUMPRODUCT((LEFT(M1:M16)="2")/(COUNTIFS(M1:M16,M1:M16)+(M1:M16="")))
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 7 years ago.
Improve this question
I have 2 columns, each with a numeric value. The third column is the PRODUCT of the first 2 columns but it is just numbers. I want to in the format of $xxxx.00 rather than xxxx.
What can I do to achieve this?
RIght click on the column header and choose Format Cells
Format the cell to currency. It's a command on the Home ribbon.
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:
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
We have a large sheet with expiration dates. Most are currently formatted MM/YYYY. Unforunately the new ones are MM/DD/YYYY. How can I add 01 (first day of the month) to the MM/YYYY formatted dates so they comply with MM/DD/YYYY?
Example:
Convert 05/2016 to 05/01/2016
Thanks!
=DATE(YEAR(cell_with_date),MONTH(cell_with_date),1)
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 have in a cell ("I8") the name of the sheet and I in another cell I want to get the value of a cell that is located in a different workbook but has the same name.
I've tried:
='[Results.xlsx]'&I8&'!$P$2
But I get an error. I've tried using " but I also get an error. I've done this already but I haven't got the excel file with me.
Use Indirect()
=INDIRECT("'[Results.xlsx]" & I8 & "'!$P$2")