Home |
Search |
Today's Posts |
#1
![]() |
|||
|
|||
![]()
I need to create a report (from multiple workbooks) of activities that are to
occur "today" from a list of dates (Column A)and events (Column B). but the dates might not be in ascending order and some cells in Column A may not contain a date. There is one such "table" in each workbook. The report would look like this: Today's Date Workbook1 Empty trash Workbook2 (blank) because there is nothing to be done today Workbook3 Cook dinner Is this possible? |
#2
![]() |
|||
|
|||
![]()
When you set VLOOKUP to find an exact match, your data
doesn't need to be sorted. Set the 4th argument to 0. =VLOOKUP(---,---,---,0) HTH Jason Atlanta, GA -----Original Message----- I need to create a report (from multiple workbooks) of activities that are to occur "today" from a list of dates (Column A)and events (Column B). but the dates might not be in ascending order and some cells in Column A may not contain a date. There is one such "table" in each workbook. The report would look like this: Today's Date Workbook1 Empty trash Workbook2 (blank) because there is nothing to be done today Workbook3 Cook dinner Is this possible? . |
#3
![]() |
|||
|
|||
![]()
Hi
To avoid an error when there is nothin found: =IF(ISERRROR(VLOOKUP(...,...,...,0)),"",VLOOKUP(.. .,...,...,0)) or =IF(ISNA(VLOOKUP(...,...,...,0)),"",VLOOKUP(...,.. .,...,0)) -- When sending mail, use address arvil<attarkon.ee Arvi Laanemets "VJ7777" wrote in message ... I need to create a report (from multiple workbooks) of activities that are to occur "today" from a list of dates (Column A)and events (Column B). but the dates might not be in ascending order and some cells in Column A may not contain a date. There is one such "table" in each workbook. The report would look like this: Today's Date Workbook1 Empty trash Workbook2 (blank) because there is nothing to be done today Workbook3 Cook dinner Is this possible? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Why is the order of my data table opposite from graph? | Charts and Charting in Excel | |||
Help with data not getting plotted | Excel Discussion (Misc queries) | |||
Pulling data from 1 sheet to another | Excel Worksheet Functions | |||
pivot table in data source order | Excel Discussion (Misc queries) | |||
Daily Macro to Download Data, Order and paste in order | Excel Worksheet Functions |