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 micrososft excel and I am going over finance records with it. I would like to delete all $0 dollar amounts from column C. Any way to do that?
Highlight column C.
Press CTRL+H
Find 0
Replace (blank)
Click Replace All
--Quick and dirty version.
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 3 years ago.
Improve this question
So I have a few cells with a numeric value in parentheses. I'd like to count how many times each fruit occurs (apples, oranges, bananas) but also count the values in the parentheses as a sum. How would I go about this?
in D1:
=SUM(($A$1:$A$12=C1)+((LEFT($A$1:$A$12,LEN(C1))=C1)*IFERROR(--MID($A$1:$A$12,FIND("(",$A$1:$A$12)+1,FIND(")",$A$1:$A$12)-FIND("(",$A$1:$A$12)-1),0)))
Array formula So confirm with Ctrl-Shift-Enter instead of Enter when exiting edit mode.
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 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 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 9 years ago.
Improve this question
For a spreadsheet of mine, I want the sum of an entire column, no matter how many entries a column is. This was previously solved by
=SUM(A:A)
but I was wondering if there was a way to do all but the first 2 rows of column A.
=SUM(A2:A)
does not work. Thanks in advance!
You could use
=SUM(A:A)-SUM(A1:A2)
or, if you know that the cells you exclude are numeric,
=SUM(A:A)-A1-A2
MrExcel has a couple of suggestions:
=SUM(A3:A65536)
OR
=SUM(A3:INDEX(A:A,MATCH(9.99999999999999E+307,A:A)))
=Sum($A$3:$A$1048576)
Should work