Google Sheets Import Range Issue - google-sheets

I have three different formulas that keep #REFing out and need help with:
=ARRAYFORMULA({Importrange($A$1,$H$1&"!A3:H10000");Importrange($A$1,$H$1&"!A10001:H20000");Importrange($A$1,$H$1&"!A20001:H31486")})
=ARRAYFORMULA({Importrange($A$1,$H$1&"!I3:P10000");Importrange($A$1,$H$1&"!I10001:P20000");Importrange($A$1,$H$1&"!I20001:P31486")})
=ARRAYFORMULA({Importrange($A$1,$H$1&"!Q3:X10000");Importrange($A$1,$H$1&"!Q10001:X20000");Importrange($A$1,$H$1&"!Q20001:X31486")})
Why is this import range not working? Is there something I can edit to help these formulas flow through better? Thanks for all of the help!
I have added in the last half into the formulas to break up the formulas a bit and that seemed to help temporarily.

Related

Google Sheets Percentage Formula with multiple variables

I am wondering if someone with Google Sheets expertise can help me figure out how to write a formula to find percentages based on 2 parameters.
For Example, please see screenshot below, we want to figure out what percentage of the cost is included(Y/N) within each fruit (oranges/apples). What would be the best formula to solution for this?
Thank you!
Thanks in advance!

Google Sheets: Is it possible to simplify this formula? Preferably, I'd like it to calculate all the cells in the row

Can the following formula be simplified as described in the paragraph below it?
=(ABS(D$3-D5)+ABS(E$3-E5)+ABS(F$3-F5)+ABS(G$3-G5)+ABS(H$3-H5)+ABS(I$3-I5)+ABS(J$3-J5)+ABS(K$3-K5))/-1
The problem is that I don't know how many columns I'm going to end up with, and I certainly don't want to continue manually writing each column into the formula. Is there I way to simplify this formula so that every column in a row is calculated?
I've been trying various formulas to no avail, and I can't get usable results via Google searches. I suppose I don't know how to effectively word the question without writing a paragraph.
Thanks, in advance!
Try this one:
=-SUM(ARRAYFORMULA(ABS(D$3:$3 - D5:5)))
GOT IT:
=ArrayFormula(SUM(ABS(D$3:$3-D5:5))/-1)

Import specific rows and formulas from master sheet

I have been looking for hours now how to solve my problem, as it follows :
I want to duplicate this master sheet a hundred times and be able to let the end-users fill in the green cells, without breaking the IMPORTRANGE formula (cell A3).
Also keeping the original formulas (additions and multiplications) of the master sheet within the copied sheets would be a great plus.
I have tried multi things with QUERY formulas but I just can't sort it out.
Thanks in advance to anyone helping out !

Google Sheets: How to Find the Least Popular/Common Value

I'm looking for help finding a function/formula to find the least common value in a col on Google Sheets.
In a couple of words, the opposite of the Mode function.
Any help would be hugely appreciated.
Thanks,
Tom.
Assuming the range you want to count is A2:A40, try:
=unique(filter(A2:A40,countif(A2:A40, A2:A40)=MIN(countif(A2:A40,A2:A40))))

CONCATENATE in ArrayFormula's IF statement in Google Sheets not

Make Google Spreadsheet Formula Repeat Infinitely helped me to expand my formula indefinitely and other StackExchange results helped me get to here:
=ARRAYFORMULA(IF((AF2:AF="")," ","L"&ROW(F2:F)&":AD"&ROW(F2:F)))
However, when I tell "L"&ROW(F2:F)&":AD"&ROW(F2:F) to CONCATENATE, every row gives a results as if it was CONCATENATE(L2:AD2).
I tried =ARRAYFORMULA(IF((AF2:AF="")," ",CONCATENATE("L"&ROW(F2:F)&":AD"&ROW(F2:F)))) and =ARRAYFORMULA(IF((AF2:AF="")," ",CONCATENATE(INDIRECT("L"&ROW(F2:F)&":AD"&ROW(F2:F))))) but neither are working.
I am trying to get each row to CONCATENATE(L2:AD2) then CONCATENATE(L3:AD3) then L4:AD4 and so on.
Any help is most appreciated.
To make more easy to explain and understand by using an example, assume that the source values are in the range A2:C3
Instead of using
ARRAYFORMULA(CONCATENATE(A2:C3))
use
ARRAYFORMULA({A2:A3&B2:B3&C2:C3})

Resources