Transposing Column Values to Row With Merged Cells in Google Spreadsheets - google-sheets

There is a table in which the data is presented as in three rows, A1:BK3. My task is to switch this data from going across the columns, to down rows, as shown in cells A10:C41
I was able to implement only the data output for the DAY, but I do not know how to output the data for the NIGHT.
Any help would be welcome. Thanks

I think you just need to adjust the column by one to the right. This seemed to work...
=INDEX($B$1:$BK$3; MATCH($A$3; $A$1:$A$3; 0); MATCH($A11; $B$2:$BK$2; 0)+1)

Related

Find a way to increment formula in merged cells and blank cells

It's my first time posting here, I tried to look for something similar to what i am looking for but couldn't find anything, but if I just didn't look enough, I apologize.
My problem is as follows:
https://docs.google.com/spreadsheets/d/10yx-WO_SlOnFLNW83N8wucOrcexfLtt1TE2FDzTAQbc/edit#gid=799857548
I have a data table with information I receive from somebody. I then need to use that information to feel kind of individual product data table on another sheets, and add more to it.
Instead of copy everything of sheets one in sheets 2, I would like it to feel by itself.
I tried with =Cellsadress or =OFFSET and other stuff but couldn't manage to get what I want.
When i put every formula in the green table on sheets 2 and try to increment it by dragging down, the formula values increase by 25 approximately. but i want it to increase by only one, or find another way to show the information in the column of sheets 1 to reflect in different cell of sheets 2.
In my real document i have 100 of lines, so i cant do it manually like i could do with 4 lines.
Is there a way to do that?
If somebody have a solutions i would be gratefull
try this formula for C32 =INDIRECT("'Sheets 1'!F"&(int(row()/25)+2))
when you copy-paste this formula into cell C57 or C82, it will take values from 'Sheets 1'!F4 and 'Sheets 1'!F5, respectively

Is it possible to create a scrollable table in Google Sheets without freezing?

I would like to know if it is possible to have a sheet in Google Sheets with like 35 rows and have a table with much more rows of data with a scroll in it.
You can use a Table Chart.
Insert Chart
Select Table for the chart type
Set data range (for the one below B120:B300,C120:C300,E120:E300,F120:F300)
You'll have to have the data on a sheet somewhere and add each column separately as a data range. However it seems poorly supported. Last I checked it doesn't work very well on mobile. Also you can't format colors or font. It does allow sorting by column and alternating row color.
There is no way of doing exactly that. A good alternative is to freeze the rows that you always would like to see. This makes the scrolling not apply to them.

Get count of cells in column where sum of those cells are less than a specified value

I have a spreadsheet where I am trying to get the count of cells in a column, where their sumproduct value reaches a specified number (I wrote comments on the spreadsheet that should make it clearer).
So far I have got some sort of formula, but it is returning me the total count of all cells in the range a specify? I cannot figure out how to do this, so any help would be much appreciated.
My formula:
=ArrayFormula(countif(sumif(SUMPRODUCT(AB13:AB,if($X$13:$X<>"",1/$X$13:$X,1)),"<="&AB13:AB167,AB13:AB167),"<="&abs(AB9)))
Here's my copy of your sheet. It's set to "anyone can edit".
https://docs.google.com/spreadsheets/d/1ebu7UNCVuG7DyC4kVGLiRr3AT4vyU2V_lwlnALQfGy4/edit?usp=sharing
This is the formula I came up with. It gets rid of the need for the row count column you have.
=ARRAYFORMULA(MATCH(F11,MMULT(N(ROW(F13:F)>=TRANSPOSE(ROW(F13:F))),IFERROR(F13:F/MMULT(N($F13:$H<>""),TRANSPOSE(COLUMN($F13:$H)^0)),0))))
It will be a little slow with very large sheets. You'd need a different solution if you were going to have more than a couple thousand rows.

Google Sheets: How do I "ImportDATA" or "importRANGE" from single cell into merged cells?

I have a Google Sheet that has the first three columns filled with 2-cell high merged cells down to row 42.
Example:
I would like to import data from another sheet (rows A4:A23) and have that data populate into the merged cells A3-4:A41-42. Is it possible?
This function brings the information in, but it does not display correctly in the merged cells.
=importrange("https://docs.google.com/spreadsheets/d/sheetIdentifier","TabName!A4:A23")
The idea is to have the player and their strength numbers in columns A:C and then have their two assignments in the un-merged rows in columns D:F.
Thanks for any assistance you can give.
You may have some mistake in the syntax
Please try the following
=IMPORTRANGE("JUST_THE_SHEET_ID_HERE","TabName!A4:A23")
(If still facing issues edit your question, share some data, the expected results and let us know.)

Sum imported range row-wise

I have a table with data in three columns, lets say from E26 to G47. What I want is to display the row-wise sum of this data in another spreadsheet, so the cell E26 of the other spreadsheet contains the sum of E26 to G26 from the first sheet. I tried to implement it in code, but I was unsuccessful:
=SUM(ImportRange("key"; "sheet!E26:G47"))
This sums the whole data of rows and columns in one cell.
=SUM(ImportRange("key"; "sheet!E26:G26"))
This does nothing.
How can I achieve this? Thanks!
One way:
=ArrayFormula(MMULT(ImportRange("key";"sheet!E26:G47");{1;1;1}))

Resources