HANSEMINATOR
New Member
- Joined
- Nov 10, 2013
- Messages
- 6
Hi!
After having solved countless Excel related tasks using this forum, I thought I'd better register and say hi and thanks.
I am however also at the moment seriously stuck and could use help.
Problem is that I want to filter data finding all relevant people based on:
I was inspired by this approach Advanced custom date filter in Excel 2007 | Get Digital Help - Microsoft Excel resource
only thinking that I could take my form data and make a hidden version of what has been done in the example above.
My vba code does however fail, which is very weird, because the code has been generated by a recording a macro, which succeeds when i record it!
Have anybody ever experienced this? Or do you perhaps have a other suggestion how to filter the data?
The filter code which is generated by the macro looks as follows:
Really appreciate the help
Regards
After having solved countless Excel related tasks using this forum, I thought I'd better register and say hi and thanks.
I am however also at the moment seriously stuck and could use help.
Problem is that I want to filter data finding all relevant people based on:
- Location
- Activity Dates (only people active between two dates)
- Group
I was inspired by this approach Advanced custom date filter in Excel 2007 | Get Digital Help - Microsoft Excel resource
only thinking that I could take my form data and make a hidden version of what has been done in the example above.
My vba code does however fail, which is very weird, because the code has been generated by a recording a macro, which succeeds when i record it!

Have anybody ever experienced this? Or do you perhaps have a other suggestion how to filter the data?
The filter code which is generated by the macro looks as follows:
Code:
ThisWorkbook.Sheets("Data").Range("A1:O788").AdvancedFilter Action:=xlFilterInPlace, CriteriaRange:= _
Sheets("Hiddensheet").Range("A1:O2"), Unique:=False
Really appreciate the help
Regards