Excel Vlookup Date - Create List with multiple values - excel

Good Morning,
I'm trying to make a list of all items done on a certain date Using Vlookup. Date would be on R8.
The first two highlight were place as an example of what I'm wanting it to look like.
Can someone help me figure out this formula please!
I tried this formula from a website I found but I cant seem to make it work.
=(INDEX($B$9:$B$150,SMALL(IF(R$8=$A$9:$A$150,ROW($B$9:$B$150)-2,""),ROW()-2)))

If you're using office 365:
In cell Q10 type:
=FILTER(B:C,A:A=R$8)

Related

Sumif formula for chosen criteria ranging this date of to this date

hi guys so im having trouble with this sumif. i can make other formulas to work for simple sumifs. but this one is not working. im trying to sum this given criterion
=SUMIFS($C$4:$C$33,$B$4:B$33,$A$4:$A$33,">"&$G$6,$H6,$A$4:$A$33,"<="&I6)
here is the sample sheet im playing with before doing it to the actual sheet.
this is what i want to happen
ex. if "Line 1" is chosen how many minutes it consume during this dates from 8-july-22 upt to 13-aug-22.
You need to use the formula like as given below, SUMIFS() syntax was not applied in correct order.
=SUMIFS($C$4:$C$33,$B$4:$B$33,$G6,$A$4:$A$33,">="&$H6,$A$4:$A$33,"<="&$I6)
Learn how to use SUMIFS() Function from Microsoft Documentation.

Highlight Overlapping Dates based on Range with Unique Identifier (VBA)

First time asking a question and very new to VBA code. I'm trying to write VBA code to highlight when dates overlap across a range of cells based on a unique identifier. Here is an example of the code:
Basically i'm looking to compare the dates associated with the first unique identifier (1234 - which is three rows), highlight whether any dates are overlapping and then move to the next unique identifier (5678) and do the same.
Hope this is clear. Any help is appreciated.
Ciarán
welcome to SO!
You did forget to include the VBA you already wrote yourself, as that would help people here helping you (and this is not a free coding service platform ;)). Secondly, you could do that without VBA, just using the COUNTIFS formula and conditional formatting. For that solution, see e.g. this tutorial on COUNTIFS: https://exceljet.net/excel-functions/excel-countifs-function and this one on conditional formatting: https://exceljet.net/conditional-formatting-with-formulas

Vlookup for differente sheets Excel

Good afternoon,
I am trying to use a VLOOKUP formula across different sheets, but so
far I am unsucessful.
The formula I am using is the one below:
VLOOKUP(R9;INDIRECT("'"&INDEX(ListaFolhas;MATCH(1;--(COUNTIF(INDIRECT("'"&ListaFolhas&"'!$C$4:$D$4");R9)>0);0))&"'!$C$4:$D$4");2;FALSE)
ListaFolhas is the name of the range of the names from the different
sheets.
Basically I need to insert the number associated with each person:
What can I be doing wrong? I used this formula from a page and adapted
to my own case...
EDIT:
After some research I figured out an answer. However, I am facing a new problem: The formula I found only considers one word, doesn't consider 2+ words. A screenshot of the situation:
In the image I have the formula I am using and the difference I get. Could anyone help me please? Thanks in advance!
=INDEX(range of cells with the numbers, MATCH(name you are looking for,ListaFolhas, 0))

Dynamically extract a list of unique values from a column range in Excel?

I found this example in an excel tutorial
The following image is my desired result. and the following formula is supposed to be able to extract the unique records dynamically. I know how to do this with VBA but i really want to make this a formula without using a macro.
=IFERROR(INDEX($B$2:$B$9, MATCH(0,COUNTIF($D$1:D1, $B$2:$B$9), 0)),"")
I have tried the above formula as given in the example link above but it returns with error. I am assuming that this worked at some point in excel however it no longer works with Excel 2016. Can someone clarify why this formula no longer works? Thank you.
Answering my own question about 5 minutes later, so i read the patch nodes on the how match changed from excel 2008 to 2016. You need to use the index rather than the count.
=IFERROR(INDEX($B$2:$B$9, MATCH(0,INDEX(COUNTIF($D$1:D1,$B$2:$B$9),0,0),0)),"0)),"")")
Recommended edit to the formula to change the value returned on error to a blank:
=IFERROR(INDEX($B$2:$B$9, MATCH(0,INDEX(COUNTIF($D$1:D1,$B$2:$B$9),0,0),0)),"")

Excel - complex if function

I need help with my Excel table.
I want to compare my Reifenstärke with Reifenstärke, and than compare it with the weather to get the specific round number for that Car.
I need to use a IF-function but i don't really know how,
I will add a picture of my problem
https://www.dropbox.com/sh/7vstay1p15m15y1/AAAF5QHrj4Mf098tpd1I8gIda?dl=0
Use the following VLOOKUP formula under "Minuten pro Runde":
=IF($E26=2,VLOOKUP($F26,$D$17:$I$19,6,FALSE),IF($E26=1,VLOOKUP($F26,$D$17:$I$19,5,FALSE),""))
Then copy it down as far as you need.

Resources