Forum Discussion
Blank cells
- Jun 06, 2023
just add another condition like:
=FILTER(Sheet1!$A:$J, (Sheet1$H:$H="")*(Sheet1$A:$A<>""))but better yet would be to 'Format as a Table' the data on Sheet1 and then use table reference. So select a cell in the data table on Sheet1 and then under Home select 'Format as a Table' and pick any style you like. Then make sure the autoselection picks your whole data range and if the table has headers. Then after it is made into a 'table' under the 'Table Design' tab you can NAME your table something meaningful like 'Data'. Then your formula would be:
=FILTER(Data, Data[close date]<>"")
and this will be applied only to the rows of the table instead of the whole sheet. If you don't want to return all the columns then something like:
=FILTER(Data[[date]:[open date]], Data[close date]<>"")
assuming you want the columns from "date" through "open date" (this of course will depend on your actual table header names.
just add another condition like:
=FILTER(Sheet1!$A:$J, (Sheet1$H:$H="")*(Sheet1$A:$A<>""))
but better yet would be to 'Format as a Table' the data on Sheet1 and then use table reference. So select a cell in the data table on Sheet1 and then under Home select 'Format as a Table' and pick any style you like. Then make sure the autoselection picks your whole data range and if the table has headers. Then after it is made into a 'table' under the 'Table Design' tab you can NAME your table something meaningful like 'Data'. Then your formula would be:
=FILTER(Data, Data[close date]<>"")
and this will be applied only to the rows of the table instead of the whole sheet. If you don't want to return all the columns then something like:
=FILTER(Data[[date]:[open date]], Data[close date]<>"")
assuming you want the columns from "date" through "open date" (this of course will depend on your actual table header names.
- JoeEason92Jun 06, 2023Copper ContributorAwesome hopefully that speeds up my formulas a little. The database sheet is already formatted as a table, but it's on a shared drive and not all users have full access to it, hence why I'm just trying to copy the live information out of it as simply as I can. Thanks for your help 👍