Tagged Questions
0
votes
1answer
20 views
XSLT filter for Yes/No Column/Field in SharePoint Custom List for SharePoint Designer DataView WebPart
I'm trying this with no luck:
[@ActiveStatus='Yes']
also tried 1, '1', 'True' .. get no rows back.. If I remove the filter I get back all rows.
full line in code view looks like this:
...
0
votes
1answer
31 views
XSLT Filter list items in DFWP by Current Date & Time
I have a list with the fields "Effective" and "Expires". Both fields are Date and Time data types. I want to show the list items where the current date/time is greater than Effective and less than ...
0
votes
1answer
120 views
Filter a DVWP based on currently logged in user
I have a sharepoint list which lists issues.
There are 4 people(not fixed) from separate groups(say A,B,C and D) responsible for each issue.
Now I've a requirement according to which,
I'll have ...
0
votes
2answers
210 views
Capture filter value, within xslt, passed in from connected web part
Is it possible to get hold of the value of a filter being passed in by a connected web part?
For example, if a sharepoint list filter is sending a filter value of "1" to webpart A (a dataview ...
0
votes
0answers
80 views
Filter on dataview spd2010
I am currently looking for a solution to filter on a dataview to bring back birthdays for the current month and the next 2 weeks. I am currently using the following:
...
0
votes
1answer
769 views
Using a list view to filter another list view
I have two lists; List A and List B. List B has a lookup column to List A.
I want to filter List B based on the value in the field that looks up A. This can of course be done using the default OOTB ...
3
votes
1answer
5k views
Filtering a list with date ranges - xslt / advanced expressions on list filters possible?
I've got a Sharepoint 2010 list that I'd like to filter with date-ranges. I'm doing something like
if END_DATE > [NOW - 1Week]
and END_DATE < [NOW + 1Week]
or PLAN_END > [NOW -1Week]
and ...