Forum Discussion
Transferring data based on specific date
Hi,
I am creating a data base, but I am stuck at point where I want data to be copied to another sheet based on date. e.g. if I enter a data on 02/12/2021 then in the database sheet it should find the date 02/12/2021 and then paste all the details in that specific column.
8 Replies
- PeterBartholomew1Silver Contributor
If the database were a database table rather than a worksheet name some of the referencing would be more descriptive. There is a 'gotcha' with using dates as field names though, in that they get converted to text. So, following up on Riny_van_Eekelen 's suggestions in the Excel 365 context
XLOOKUP is more concise but INDEX/XMATCH/XMATCH has the advantage of being able to return multiple columns as an array.
- KashifRiyadhCopper Contributor
PeterBartholomew1 Riny_van_Eekelen
Guys first of all thank you and sorry for late reply.
I have attached the sheet again, kindly look into it.
Regards,
Kashif
- PeterBartholomew1Silver Contributor
You will need a VBA macro to perform such tasks. The technical reason is that worksheet formulas implement a functional programming style in which values may be read and calculations performed, but nothing that already exists may be changed. By way of contrast, VBA implements an imperative programming style that allows the state of the information held by the workbook to be changed. In particular VBA will allow you to replace data within a database table as you require.
- Riny_van_EekelenPlatinum Contributor
KashifRiyadh Without seeing the file you are working on, I suggest you look into one of Excels lookup functions. LOOKUP, VLOOKUP, INDEX/MATCH or XLOOKUP. Which one to choose depends on the structure of the data and the Excel version you have. You might even have access to the new FILTER function.
- KashifRiyadhCopper Contributor
- Riny_van_EekelenPlatinum Contributor