Creating an excel spreadsheet that will have multiple users inputting data in specific sheets. I’m then planning on using VSTACK to combine the data from all their sheets to one sheet and have a "from" and "to" date search box to allow a user to view rows that fall in between those specific dates and also a search box to search all the rows.
Once I learned about VSTACK it seemed to be faster than Power Query as there is no need for the users to hit refresh. I’m trying to make it as simple as possible for the end-user.
I thought I could have VSTACK in one sheet with all the data combined and then use the FILTER function in another sheet where I'll have the search boxes. I can't seem to make the functions work. Getting VALUE error. CALC error.
One sheet (DATA) where I'm calling all the various sheet/table data where Column A are Dates in the format, 14-APR-24:
Then use FILTER in another sheet using that VSTACK data.
I haven't been able to get it to work.
Thanks.
Once I learned about VSTACK it seemed to be faster than Power Query as there is no need for the users to hit refresh. I’m trying to make it as simple as possible for the end-user.
I thought I could have VSTACK in one sheet with all the data combined and then use the FILTER function in another sheet where I'll have the search boxes. I can't seem to make the functions work. Getting VALUE error. CALC error.
One sheet (DATA) where I'm calling all the various sheet/table data where Column A are Dates in the format, 14-APR-24:
Excel Formula:
=VSTACK(Table1,Table2,Table3,Table4,Table5,Table6)
Then use FILTER in another sheet using that VSTACK data.
Excel Formula:
=FILTER(Data,(Data!A2:A20000>=N1)*(Data!A2:A20000<=O1))
I haven't been able to get it to work.
Thanks.