I was hoping to get some assistance with a formula I have. I am trying to calculate the second quartile (using multiple if statements) for a specific column across 2 worksheets. Alternatively, I could copy and paste the data into the one worksheet, but I am trying to avoid this.
This is the formula I have thus far:
=QUARTILE(IF((CHOOSE({1;2},'Table 2a'!A:A,'Table 2b'!A:A)=C2)*
(CHOOSE({1;2},'Table 2a'!L:L,'Table 2b'!L:L)=D24),CHOOSE({1;2},
'Table 2a'!BB:BB,'Table 2b'!BB:BB)),2)
Any assistance would be greatly appreciated.
Related
I have a set of data that is WAY too big. I want to pull out every 18th column and put it into a new sheet that will be easier to manage. This is the code I have now, which is based on a similar question asking about pulling out cells from a row: Excel: Referencing a cell using a function
=INDEX(Sheet4!A+((COLUMN(A:A)-1)*18),Sheet4!1:1)
I am currently getting a #NAME? error
Thank you for your help
You can use a dynamic array to avoid requiring copying across and down:
=LET(data, Sheet4!$A$1:$ZZ$1000, lastrow, MAX((LEN(data)>0)*ROW(data)), arr, INDEX(data, SEQUENCE(lastrow), 1+(SEQUENCE(,5,0))*18), IF(arr=0,"",arr))
where the three values (excluding 0 which is the sequence start value) in: 1+(SEQUENCE(,5,0))*18 control starting column, number of columns to spill and the column frequency in that order.
I am working on updating an Excel spreadsheet for my supervisor and I want to find a way to get a named range from another sheet depending on the day of the week (each named range has the name of a weekday) but I haven't found a way to do this.
So I need the staff list to be duplicated under the weekday heading based on the heading. Any help appreciated, I don't have a huge deal of experience with Excel or VBA.
I'm not quite sure if I understood what you are looking for! If your Excel version has Dynamic Array Formulas then you can try this:
I have the below table in excel
And I want to add a overall line total in for all w/c columns that have a invoice number in the column next to it.
For example I have used =sumif(B2,">0",A2) to bring back the total for w/c 1st but how can i add all values together across the multiple columns - essentially trying to do a sumif multiple range (if that is possible) to get the same result as the below example:
Any help or alternative method to achieve this much appreciated.
You could try:
Formula in I2:
=SUMPRODUCT((ISODD(COLUMN(A2:G2)))*(B2:H2<>"")*A2:G2)
Looking for some assistance on excel, I have a workbook with approx 15 sheets that have the same exact layout and I am trying to use an INDEX/MATCH formula to pull all rows that have a quantity in column A to another sheet in the workbook to create a list but I keep getting N/A. I need the data to be live so that if any of the sheets are updated the summary page is also upto date.
I have previously had this working in google sheets using a Query function but can't make it work in excel. Any help would be much appreciated.
Tried this formula:
=INDEX(Equipment!$A$4:$A$676,MATCH(A1,Equipment!$A$4:$R$676,-1))
Here is a simple example to show how INDEX(), Match() and INDEX() & MATCH() work together:
I'm trying to calculate the number of occurrences per day for several columns of data.
Here's an example of my data set:
Data set
Here's how I need to present it:
Present data
Any help is greatly appreciated!
In the Cell W3 of Sheet 2, use the COUNTIFS formula to achieve the desired result. You might need to change the sheet name in the below example or column names.
=COUNTIFS('Sheet1'!$B:$B,'Sheet2'!$A3,'Sheet1'!$A:$A,'Sheet2'!W$2)
and just drag this formula to the right and down and you'll get the desired results.