Please see the link to my Google Sheet.
Google Database
This is an image from my 'Planning' sheet:
In cell A6 of the 'Planning' sheet is a name that is selected by dropdown sourced from column A5:A17 of the 'Qualifications' sheet.
In cell B2 of the 'Planning' sheet is a dropdown and the dropdown data is sourced from row J4:AF4 of the 'Qualifications' sheet.
Cell B6 of the 'Planning' sheet is to contain the formula.
This is an image of my 'Qualifications' sheet:
Depending on the value selected in the dropdown and the name in column A of the 'Planning' sheet, I want cell B6 of the 'Planning' sheet to return the contents of the cell in the range 'Qualifications'!A5:AF adjacent the name e.g. if the dropdown in A6 is set on David Bowie and 3465 is selected in B2, I want cell B6 to return '29/03/2019'. I'm just not sure about the formula and would appreciate some help, please.
delete those green cells and paste this in B6:
=ARRAYFORMULA(IFNA(VLOOKUP(A6:A, Qualifications!A5:AF,
MATCH(B2:H2, Qualifications!4:4, 0), 0)))
In B6 please try:
=offset(Qualifications!A1,query(arrayformula({row(Qualifications!A5:A14),Qualifications!A5:A14}),"Select * where Col2='" & A6 & "'")-1,query({transpose(arrayformula(COLUMN(Qualifications!B4:G4))),transpose(Qualifications!B4:G4)}, "select Col1 where Col2='" & B5 & "'",0)-1)
Related
I would like to fill matrix data in an excel file by matching column E with column A (red box), row 1 with column B (blue box), and print column C (green box). For example, E3 and F1 are contained in the same row (in row 1), red and blue boxes, respectively, it will print data in column C1 in F3 (green box).
enter image description here
Thank you.
I've already tried =INDEX(C:C, MATCH(E3,A:A,0), MATCH(F1,B:B,0)), but several cells did not function.
My data is:
I need to calculate a sum of the "col1" and "col2" where "name" is "a": 1+2+5+6 = 14.
Now I am using:
=SUMIF(A:A,"a",B:B)+SUMIF(A:A,"a",C:C)
Is there any better way (eg with arrays)?
Try this, for the sum of values where name is a,
Formula in cell B6 --> Applicable To All Excel Users
=SUMPRODUCT(($A$2:$A$4=$A6)*($B$2:$C$4))
Formula in cell C6 --> Applicable To Only O365 & Excel 2021 Users
=SUM(FILTER($B$2:$C$4,A6=$A$2:$A$4))
I've been given a badly formatted sheet where there are thousands of records with X and corresponding Y value in the following row rather than the same row and next column.
Is there a function that will allow me to copy altering rows?
So...
A2 goes into B2 and A3 goes into C2
A4 goes into B3 and A5 goes into C3
etc
A sample sheet is in https://docs.google.com/spreadsheets/d/1fB2rpVdJiTmp96sjGZiIYvKxEL9DLiK7W7QU8-4AN3A/edit?usp=sharing
I'd prefer a Google Sheet solution but excel is fine as well.
delete everything in B2:C range and try:
={FILTER(A2:A, A2:A<>"", MOD(ROW(A2:A), 2)=0),
FILTER(A2:A, A2:A<>"", MOD(ROW(A2:A)+1, 2)=0)}
What can be the way to cut a specific row and paste it into another tab of the same sheet when checkbox condition meet is true?
in given scenario:
on Sheet1 you have a checkbox in A1 cell with logic FALSE/TRUE
on Sheet2 paste this formula into A1 cell:
=IF(Sheet1!A1=TRUE, Sheet1!B1:1, )
I am trying to capture text from a column in another worksheet.
For example:
In Column Y in Worksheet1 - I want to capture the texts in the cells (lets say there are 10 cells with texts out of 30) but miss off the title cell in Y3.
Then I want to display these captured texts in cell L3 in Worksheet2 with text from each cell on a new line within L3.
Is there a way to do this? Will I need to complete this using an array?
Many thanks
Use this formula then select Wrap Text. See the screenshot below. If it serve your purpose then you can implement for Sheet2.
=D4 & CHAR(10) & D5 & CHAR(10) & D6 & CHAR(10) & D7