Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 10 years ago.
Improve this question
I have some data in a row, say A1 to Z1, and I would like to link to this data in another spreadsheet. However I would like to transpose it so the data runs from A1 to A26. It is important that it is linked in some type of function so that if I change the data on the first sheet, the second sheet is updated as well.
I'm thinking of some type of formula that states that as you go down a cell in column A, it knows to grab the data from the next cell to the right in Row 1. So: A2=B1; A3=C1; A4=D1 ...
Any ideas?
Related
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 2 years ago.
Improve this question
I have a dataset and that have the values in B and C columns. I need to add the UID for every instances of data present in the B column. Example.
The column A should give me the UID for data set based on the data present in the column B.
I have tried many formulas but not seem to be relevant for what i am looking for.
Try below formula. Put the formula in A2 cell then drag and down.
="TT" & COUNTA($B$2:$B2)
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 3 years ago.
Improve this question
This is table data which is the source in SHEET 1.
I want to fill the data in other sheet SHEET 2.
like i want to copy the J of Cross in that location from SHEET 1
I tried using DGET function but it returns #VALUE!
Help me here
Put this in cell G4 -
=INDEX(Sheet1!A:K, MATCH(H4, Sheet1!$B:$B, 0), MATCH($G$2, Sheet1!$A$13:$K$13, 0))
You can do the same for other cells.
Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 9 years ago.
Improve this question
I want to select a whole column for a formula in excel.
I know I can do this, for example:
=AVERAGE(B4:B54)
which would give me the average of the cells from B4 to B54 but I want to reference the whole B column.
How can I do this?
To reference an entire column in Excel, use this syntax:
=AVERAGE(B:B)
Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 9 years ago.
Improve this question
I have a sheet like below:
I want to be able to SUM the Value fields if there is a tick next to that person's name, you will see each name has a value and if they attended that week and have a tick then include this value in the sum. I want to populate the Collected Field to show how much was collected that week.
I have tried SUMIF on a range but with no success.
Thanks in advance
SUMIF should work if you want to do it for each week, e.g. in C22 copied across
=SUMIF(C5:C19,"x",$B5:$B19)
replace the "x" with the specific character you are using to get the tick
Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 10 years ago.
Improve this question
I create a random number in my excel sheet (using RAND), 5 for example. Now I want to reference column A[my number], in this example its A5. How would I do that?
If thats not possible, is it possible to get a random row value from a column?
Thanks!
=INDIRECT("A"&RANDBETWEEN(1;10)) will randomly return cell in range A1:A10.
Usually INDEX is preferable to INDIRECT (it's not volatile and you don't need to "hardcode" the column reference). If you have your random number in B3 try
=INDEX(Data!A:A,B3)