UFN_SELECTION_CONSTITUENT_VOLUNTEERS
Gets all constituents who have ever been volunteers, regardless of current volunteer status.
Return
| Return Type | 
|---|
| table | 
Definition
 Copy 
                                    
            CREATE function dbo.UFN_SELECTION_CONSTITUENT_VOLUNTEERS()
            returns table
            as return
                select distinct
                    VOLUNTEERDATERANGE.[CONSTITUENTID] as [ID]
                from
                    dbo.VOLUNTEERDATERANGE;