FILTER with multiple criteria

StuLux

Well-known Member
Joined
Sep 14, 2005
Messages
682
Office Version
  1. 365
Platform
  1. Windows
I'm having a problem with using FILTER function with multiple criteria. I understand that to apply multiple criteria I need to place * between the criteria but I am getting #VALUE! error (each criteria works individually but not when I try both at the same time. This is my formula to try and get a filtered list of dates/times from column C without including blank rows or rows with the tile "Date Submitted" in them.
Excel Formula:
=FILTER(Data!C:C,Data!C:C<>"Date Submitted"*Data!C:C<>"")

Master File.xlsx
ABCDEFGHIJKLMN
1Field 1Ref No.Date SubmittedField 2Field 3Field 4QuestionsAnswersField 5Field 6Field 7Field 8Field 9Field 10
21OOF-2024-500115/05/24 14:28:01234Question 1Answer 15678910
3Question 2Answer 2
4Question 3Answer 3
5Question 4Answer 4
6Question 5Answer 5
7Question 6Answer 6
8Question 7Answer 7
9Question 8Answer 8
10Question 9Answer 9
11Question 10Answer 10
12Question 11Answer 11
13Question 12Answer 12
14Question 13Answer 13
15Question 14Answer 14
16Question 15Answer 15
17Field 1Ref No.Date SubmittedField 2Field 3Field 4QuestionsAnswersField 5Field 6Field 7Field 8Field 9Field 10
1811OOF-2024-500215/05/24 14:28:26223344Question 1Answer 2055667788991010
19Question 2Answer 21
20Question 3Answer 22
21Question 4Answer 23
22Question 5Answer 24
23Question 6Answer 25
24Question 7Answer 26
25Question 8Answer 27
26Question 9Answer 28
27Question 10Answer 29
28Question 11Answer 30
29Question 12Answer 31
30Question 13Answer 32
31Question 14Answer 33
32Question 15Answer 34
33Field 1Ref No.Date SubmittedField 2Field 3Field 4QuestionsAnswersField 5Field 6Field 7Field 8Field 9Field 10
34111OOF-2024-500315/05/24 14:34:33222333444Question 1Answer 50555666777888999101010
35Question 2Answer 51
36Question 3Answer 52
37Question 4Answer 53
38Question 5Answer 54
39Question 6Answer 55
40Question 7Answer 56
41Question 8Answer 57
42Question 9Answer 58
43Question 10Answer 59
44Question 11Answer 60
45Question 12Answer 61
46Question 13Answer 62
47Question 14Answer 63
48Question 15Answer 64
Data
 

Excel Facts

What does custom number format of ;;; mean?
Three semi-colons will hide the value in the cell. Although most people use white font instead.
I think try this and revert

In lieu of AND we need OR option

Excel Formula:
=FILTER(Data!C:C,(Data!C:C<>"Date Submitted")+(Data!C:C<>""))
 
Upvote 0
How about
Excel Formula:
=FILTER(Data!C:C,(Data!C:C<>"Date Submitted")*(Data!C:C<>""))
 
Upvote 0
Solution
I checked your formula, it needs minor modification to work

Excel Formula:
=FILTER(Data!C:C,(Data!C:C<>"Date Submitted")*(Data!C:C<>""))
 
Upvote 0
I think try this and revert

In lieu of AND we need OR option

Excel Formula:
=FILTER(Data!C:C,(Data!C:C<>"Date Submitted")+(Data!C:C<>""))
This results in a #SPILL! error, even though there is no cells containing anything to prevent it spilling?
 
Upvote 0

Forum statistics

Threads
1,223,885
Messages
6,175,187
Members
452,616
Latest member
intern444

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top