Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Closed 8 years ago.
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.
Questions asking for code must demonstrate a minimal understanding of the problem being solved. Include attempted solutions, why they didn't work, and the expected results. See also: Stack Overflow question checklist
Improve this question
I have a question and I think the answer should be fairly simple, but I cannot get it figured out.
We have an Excel spreadsheet where we track out leads. My boss wants to know, specifically "how many leads for each month and how many of each source and the result."
I want to put the formula in a separate sheet in the same workbook; meaning, I need a formula that pulls the data from a specified range of cells in a different sheet, and counts how many leads we had in a specific month (12012, or 22012).
I've tried variations of the following:
='Sheet1'!(=COUNTIF(e2:e20,"12012"))
='Sheet1'!counte2:e20
and the sum function, vlookup, and basically every other programming answer I could come across on multiple forums where the question was even remotely close to what I am trying to do...
I think the problem is getting it to pull from the different sheet, but I can't figure out how to make my formula work correctly.
Any help at all would be appreciated.
=COUNTIF(Sheet1!A14:A21,12012)
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 8 years ago.
Improve this question
Basically I have a table which lists products A-H in column A and then in the next ten columns are features of each product. So each product is listed and then I tick a box to say whether or not it has that feature.
What I want to be able to do is to write in one cell a product, say product b, and then in the cell next to it have return another product that has at least four matching features.
How would I go about doing this?
UNTESTED
I take it that unticked boxes for the same feature on two products does not count as a match. Presumably more than two products may have more the same four or more features that match so different answers may be equally valid (I guess #Jerry's point). Hopefully the following describes a way to achieve both a single product in the cell next to your “Write cell” (here M1) while also indicating all qualifying possibilities.
Copy A2:A9 to A12
In B12, copied across and down to K19:
=IF(MATCH($M$1,$A$1:$A$10,0)=ROW()-10,"",1*AND((INDIRECT(CHAR(COLUMN()+64)&MATCH($M$1,$A$1:$A$10,0))=B2),B2<>""))
In N1: =IFERROR(INDEX(A12:A19,MATCH("CF",M12:M19,0)),"")
In M12 and copied down to M19: =IF(SUM(B12:K12)>3,"CF","")
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 don't know if I'm right here. My problem is, I have to turn a CSV table using Excel.
Pictures may explain that better:
this is an example of an initial table:
and I want the new table look like that:
Any idea what function can do this!?
I would really appreciate your help, because my paper is due tomorrow and I need the table for a statistical calculation.
Using SUMIFS() on the restructured data.
It's hard to tell from your example but you may have to move them in pieces (not all at once) but copy all of the cells.. right click "Paste Special" -> "Values" -> Checkbox "Transpose" (in the paste special dialog box). This will transpose a block of cells.
Solved the problem with a Pivot Table.
Thank you Sean Cheshire for the hint :)
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:
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
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Closed 8 years ago.
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.
This question does not appear to be about programming within the scope defined in the help center.
Improve this question
I have an Excel spreadsheet here.
What I dont know is
if you look at the main grid the columns are formatted for space so that the description is larger. Now the part at the bottom left. I really want those 4 columns
'RESIDENT NAME' 'ACCOUNT NUMBER' 'DATE' 'AMOUNT DUE'
I really want them aligned with the rest of the grid but how do i subdivide the large Description column to accomodate this?
Because of your formatting in your question I can't be sure what you want, but if you're trying to line up more than one column with the Description column, just make the Description column a merge of more than one column, then multiple columns will be able to fit underneath it.
You can merge cells by selecting them, then going to Format Cells->Alignment and clicking the Merge cells box.