Inserting a string in a cell reference [closed] - excel

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")

Related

Spreadsheet Pivot by row values [closed]

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 2 years ago.
Improve this question
I would like to Pivot on row values to get Counts for my below data.
Expecting output to look like
I do not think you should (or can ?) use Pivot.
Some formulas like these should give needed values.
Note:
$F4 refers to the cell containing "Proficient"
$F5 refers to the cell containing "Enhusiast"
$F6 refers to the cell containing "Amateur"
A$2:A$10 refers to your data

How to cross SUM with COUNT of fields containing an integer inside parentheses? [closed]

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.

Count unique values in excel Columns with blanks [closed]

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="")))

Find which cell value has the most number of rows? [closed]

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)))

How to take the exact value next to a date cell to another sheet or table in Excel? [closed]

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:

Resources