Last Updated: Tuesday, January 5, 2016 Page 1

Size: px
Start display at page:

Download "Last Updated: Tuesday, January 5, 2016 Page 1"

Transcription

1 Page 1 Table of Contents How to Paste Query to Custom Queries... 3 View Your Query Data in Excel... 3 Reuse Your Saved Query... 3 Query Name: 0$ThatHaveEnv... 4 Query Name: SumTaxDeductForDates... 4 Query Name: NoEnvDonatedMore$ Query Name: AllRegisteredFamiliesDSB Query Name: RegFamiliesDSB1001MemberCount... 6 Query Name: AnnualGiftAmountCheck... 6 Query Name: REFamiliesForYear... 7 Query Name: REFamiliesContributing... 7 Query Name: SumFundForDates... 8 Query Name: RegDSB1001NotDonatingToFund... 8 Query Name: DDFListingDonations... 9 Query Name: DDFListingDonationsDateRange... 9 Query Name: FindMemberDuid Query Name: SumTaxDeductForDatesRange Query Name: SumTaxDeductForDatesRange Query Name: DSB1001FamGivenInButNotIn Query Name: AllRegisteredFamiliesDSB1001WithAddress Query Name: 0$ThatHaveEnvRegB4Date Query Name: RegFamDSB1001ButNotPrimary Query Name: EthnicityCount Query Name: REListOfStudentsInClass Query Name: FamilyRecordsWithOutDUIDS Query Name: MemberRecordsWithOutDUIDS Query Name: MissionInsightListingRequirements Query Name: MissionInsightListingFinal Query Name: Count by FamGroup and Status Query Name: Families with all members Deceased Query Name: Families With Deceased Members Query Name: HouseHoldsBetweenAges Query Name: CountOfStudentsInClass Query Name: For_RPTDSB_teacherRoster Query Name: DSB1001DonatedToTaxDeductible Query Name: ConfirmationCard Query Name: SABabtismCounts Query Name: SAConfirmationCounts Query Name: SAReconciliationCounts Query Name: SARCIACounts Query Name: SAFuneralCounts Query Name: SAStudentCounts Query Name: SATeacherCounts Query Name: RegFamiliesDSB1001MembersValid Query Name: SABabtismCounts0-6Valid Last Updated: Tuesday, January 5, 2016 Page 1

2 Page 2 Query Name: SAConfirmationCountsValid Query Name: SADeathCount Query Name: SARCIACountsValid Query Name: RETuitionFamiliesForYear Query Name: ReFamiliesWithOutTuitionRecord Query Name: TaxDeductibleFunds Query Name: MemberDuidSearch Query Name: REStudentsForYear Query Name: REStudentEthnicityCount Query Name: MemberEnv Query Name: FirstCommunionRange Query Name: TaxDeductibleFamilies Last Updated: Tuesday, January 5, 2016 Page 2

3 Page 3 The queries in this document make use of the Build Custom Queries feature in the ParishSOFT reports under Utilities. Below are some instructions that you will need to follow to place these queries into that utility. Also ParishSOFT on their web site has a query library that can be used as well at: How to Paste Query to Custom Queries 1. Select the query you need from below. 2. Highlight the query text and press <Ctrl> + <C> or right click on the highlighted text and select Copy from the menu option. 3. Open any ParishSOFT module and select Reports > ParishSOFT Reports. 4. From the Main Reports Menu, select Utilities > Build Custom Queries. 5. Ensure the Query Name and the Query fields are blank. If they are not blank, select the blank query name from the drop-down list and then clear the contents of the Query window. 6. Paste the query (press <Ctrl> + <V>, or click Edit > Paste from your Access menu. 7. Type in the name as listed for the query in the Query Name field. Note: If the query has a dependency on another query, your query name must be identical to the name used otherwise it will not work. 8. Select Save Query. Note: Check to see if the query you want to run has a Required Query, if it does then those need to be added first before doing the next step. 9. Select Display Query. If prompted, enter the requested information to execute the query. 10. Your results will be displayed on the screen in query format. View Your Query Data in Excel Once you have displayed a query, you can analyze it in Excel using the following procedure: 1. Select Tools - Office Links - Analyze it with Microsoft Excel from the main Access menu. 2. The data collected from your query will open on an Excel spreadsheet. 3. Manipulate the query data in Excel as needed, or do Mail Merges with the query results by using this spreadsheet as your source for the Mail Merge. Reuse Your Saved Query Once you have run and saved a query from ParishSOFT's Query Library, you can use it again and again. Just click Utilities > Build Custom Queries in ParishSOFT Reports, choose the name of the query from the drop-down list, and click Display Query. Last Updated: Tuesday, January 5, 2016 Page 3

4 Page 4 Query Name: 0$ThatHaveEnv Purpose: To list all families that have the Send Contribution Envelope checked but has donated 0 or less to any of the tax deductible funds. Required Queries: SumTaxDeductForDates Date Created/Updated: SELECT MasterMemberIndex.[Mailing Name], MasterMemberIndex.Address_1, MasterMemberIndex.Address_2, Zip.City, Zip.State, Zip.Zip, MasterMemberIndex.HomePhone, MasterMemberIndex.envelopes, MasterMemberIndex.envelope_number, MasterMemberIndex.MembershipID, IIf(IsNull([SumOfAmount]),0,[sumofamount]) AS [Donated Amount] FROM (MasterMemberIndex LEFT JOIN Zip ON MasterMemberIndex.ZipID = Zip.ID) LEFT JOIN cq_sumtaxdeductfordates ON MasterMemberIndex.MembershipID = cq_sumtaxdeductfordates.membershipid WHERE (((MasterMemberIndex.envelopes)=True) AND ((IIf(IsNull([SumOfAmount]),0,[sumofamount]))<=0)); Query Name: SumTaxDeductForDates Purpose: To sum the tax deductible funds for families. Required Queries: No required Queries Date Created/Updated: SELECT Sum(Contributions.Amount) AS SumOfAmount, Contributions.MembershipID FROM Contributions INNER JOIN [Chart of Accounts] ON Contributions.AccountID = [Chart of Accounts].[COA ID] WHERE (((Contributions.Date) Between [Enter starting date] And [Enter Ending Date]) AND (([Chart of Accounts].TaxDeduct)=True)) GROUP BY Contributions.MembershipID; Last Updated: Tuesday, January 5, 2016 Page 4

5 Page 5 Query Name: NoEnvDonatedMore$0 Purpose: To list all families that do not have the Send Contribution Envelope checked but have donated more than $0 to any of the tax deductible funds. Required Queries: SumTaxDeductForDates Date Created/Updated: SELECT MasterMemberIndex.[Mailing Name], MasterMemberIndex.Address_1, MasterMemberIndex.Address_2, Zip.City, Zip.State, Zip.Zip, MasterMemberIndex.HomePhone, MasterMemberIndex.envelopes, MasterMemberIndex.envelope_number, MasterMemberIndex.MembershipID, IIf(IsNull([SumOfAmount]),0,[sumofamount]) AS [Donated Amount] FROM (MasterMemberIndex LEFT JOIN Zip ON MasterMemberIndex.ZipID = Zip.ID) LEFT JOIN cq_sumtaxdeductfordates ON MasterMemberIndex.MembershipID = cq_sumtaxdeductfordates.membershipid WHERE (((MasterMemberIndex.envelopes)=False) AND ((IIf(IsNull([SumOfAmount]),0,[sumofamount]))>0)); Query Name: AllRegisteredFamiliesDSB1001 Purpose: To List all Registered Families According to the DSB 1001 Document Required Queries: No required Queries Date Created/Update: / SELECT mastermemberindex.lastname, mastermemberindex.[mailing Name], mastermemberindex.homephone, mastermemberindex.status, mastermemberindex.envelopes, mastermemberindex.envelope_number, mastermemberindex.diouniqueid, FamGroup_Lookup.FamGroup, mastermemberindex.membershipid FROM mastermemberindex INNER JOIN FamGroup_Lookup ON mastermemberindex.famgroupid = FamGroup_Lookup.FamGroupID WHERE (((mastermemberindex.status)=true)) OR (((mastermemberindex.status)=false) AND ((FamGroup_Lookup.FamGroup)="Active" Or (FamGroup_Lookup.FamGroup)="invalid Address" Or (FamGroup_Lookup.FamGroup)="Registered Inactive")); Last Updated: Tuesday, January 5, 2016 Page 5

6 Page 6 Query Name: RegFamiliesDSB1001MemberCount Purpose: To count members that are currently 18 or older, less than 18, and no birthdate listed, for the registered families according to the DSB1001 document. When run the query asks for an as of date which is entered in the format of mm-dd-yyyy. If member has a date of death, status is Deceased or Inactive they are not counted in this. Required Queries: AllRegisteredFamiliesDSB1001 Date Created/Update: SELECT Count(Members.MemberID) AS [Count], IIf(IsNull([Birthdate]), "No Birth Date",IIf(DateDiff("yyyy",[Birthdate],[As of Date])+Int(Format( [As of Date],"mmdd")<Format([Birthdate],"mmdd"))<18,"Less Than 18","18 or Older")) AS Age FROM Members INNER JOIN cq_allregisteredfamiliesdsb1001 ON Members.MembershipID = cq_allregisteredfamiliesdsb1001.membershipid WHERE (((Members.DateOfDeath) Is Null) AND ((Members.MemberStatus)<>"Deceased" And (Members.MemberStatus)<>"inactive")) GROUP BY IIf(IsNull([Birthdate]),"No Birth Date",IIf(DateDiff("yyyy",[Birthdate], [As of Date])+Int(Format([As of Date],"mmdd")<Format([Birthdate],"mmdd"))<18, "Less Than 18","18 or Older")); Query Name: AnnualGiftAmountCheck Purpose: To list the Annual Gift $ along with the family s name and id numbers. Date Created/Update: SELECT mastermemberindex.lastname, mastermemberindex.[mailing Name], mastermemberindex.tag_name, mastermemberindex.giftamt, mastermemberindex.envelope_number, mastermemberindex.diouniqueid, mastermemberindex.membershipid FROM mastermemberindex; Last Updated: Tuesday, January 5, 2016 Page 6

7 Page 7 Query Name: REFamiliesForYear Purpose: To list the Religious Ed Families (Those families that have children in the RE program) for a particular year. Date Created/Update: SELECT MasterMemberIndex.MembershipID, MasterMemberIndex.LastName, MasterMemberIndex.[Mailing Name], MasterMemberIndex.Tag_name, MasterMemberIndex.Address_1, Zip.City, Zip.State, Zip.Zip, tblsessions.schoolyear FROM tblsessions INNER JOIN (((RED_StudentRecords INNER JOIN MasterMemberIndex ON RED_StudentRecords.MembershipID = MasterMemberIndex.MembershipID) INNER JOIN Zip ON MasterMemberIndex.ZipID = Zip.ID) INNER JOIN tblclasslist ON RED_StudentRecords.ClassListID = tblclasslist.classlistid) ON tblsessions.tblsessionsid = tblclasslist.tblsessionid GROUP BY MasterMemberIndex.MembershipID, MasterMemberIndex.LastName, MasterMemberIndex.[Mailing Name], MasterMemberIndex.Tag_name, MasterMemberIndex.Address_1, Zip.City, Zip.State, Zip.Zip, tblsessions.schoolyear, MasterMemberIndex.Status HAVING (((tblsessions.schoolyear)=[year])) ORDER BY MasterMemberIndex.LastName; Query Name: REFamiliesContributing Purpose: To list the Religious Ed families for a particular year that contributed to one of the tax deductible funds during a particular date range. Required Queries: REFamiliesForYear, SumTaxDeductForDates Date Created/Update: SELECT cq_refamiliesforyear.membershipid, cq_refamiliesforyear.lastname, cq_refamiliesforyear.[mailing Name], cq_refamiliesforyear.tag_name, cq_refamiliesforyear.address_1, cq_refamiliesforyear.city, cq_refamiliesforyear.state, cq_refamiliesforyear.zip, cq_refamiliesforyear.schoolyear, cq_sumtaxdeductfordates.sumofamount FROM cq_sumtaxdeductfordates INNER JOIN cq_refamiliesforyear ON cq_sumtaxdeductfordates.membershipid = cq_refamiliesforyear.membershipid; Last Updated: Tuesday, January 5, 2016 Page 7

8 Page 8 Query Name: SumFundForDates Purpose: To sum a particular fund with a date range. Required Queries: No required Queries Date Created/Updated: SELECT Sum(Contributions.Amount) AS SumOfAmount, Contributions.MembershipID, [Chart of Accounts].[COA ID] FROM Contributions INNER JOIN [Chart of Accounts] ON Contributions.AccountID = [Chart of Accounts].[COA ID] WHERE (((Contributions.Date) Between [Enter starting date] And [Enter Ending Date])) GROUP BY Contributions.MembershipID, [Chart of Accounts].[COA ID] HAVING ((([Chart of Accounts].[COA ID])=[enter Fund number])); Query Name: RegDSB1001NotDonatingToFund Purpose: To list families that have not donated to a particular fund Required Queries: AllRegisteredFamiliesDSB1001, SumFundForDates Date Created/Update: SELECT cq_allregisteredfamiliesdsb1001.lastname, cq_allregisteredfamiliesdsb1001.[mailing Name], cq_allregisteredfamiliesdsb1001.homephone, cq_allregisteredfamiliesdsb1001.status, cq_allregisteredfamiliesdsb1001.envelope_number, cq_allregisteredfamiliesdsb1001.diouniqueid, cq_allregisteredfamiliesdsb1001.membershipid, cq_sumfundfordates.membershipid FROM cq_sumfundfordates RIGHT JOIN cq_allregisteredfamiliesdsb1001 ON cq_sumfundfordates.membershipid = cq_allregisteredfamiliesdsb1001.membershipid WHERE (((cq_sumfundfordates.membershipid) Is Null)); Last Updated: Tuesday, January 5, 2016 Page 8

9 Page 9 Query Name: DDFListingDonations Purpose: This is used by the parish office s that post the entries directly to one of their funds to list the entries made for DDF, FCC or SCC so that the Development Office has a listing of the entries. It will ask you for the Fund name and the Date that you want the report for. It can also be used to list the entries for any fund for that date. Date Created/Update: : Check number from Parish Added SELECT mastermemberindex.diouniqueid, mastermemberindex.diocesanid, mastermemberindex.envelope_number, mastermemberindex.lastname, mastermemberindex.[mailing Name], mastermemberindex.address_1, Zip.City, Zip.State, Zip.Zip, Contributions.Date, Contributions.Amount, [Chart of Accounts].Description, Contributions.CheckNo AS ParishCheckNumber FROM [Chart of Accounts] RIGHT JOIN ((Zip RIGHT JOIN mastermemberindex ON Zip.ID = mastermemberindex.zipid) LEFT JOIN Contributions ON mastermemberindex.membershipid = Contributions.MembershipID) ON [Chart of Accounts].[COA ID] = Contributions.AccountID WHERE (((Contributions.Date)=[Limit to Date]) AND (([Chart of Accounts].Description)=[Fund to limit to])); Query Name: DDFListingDonationsDateRange Purpose: This is used by the parish office s that post the entries directly to one of their funds to list the entries made for DDF, FCC or SCC so that the Development Office has a listing of the entries. It will ask you for the Fund name and the Beginning and Ending Date that you want the report for. It can also be used to list the entries for any fund for that date range. Date Created/Update: : Check number from Parish Added SELECT mastermemberindex.diouniqueid, mastermemberindex.diocesanid, mastermemberindex.envelope_number, mastermemberindex.lastname, mastermemberindex.[mailing Name], mastermemberindex.address_1, Zip.City, Zip.State, Zip.Zip, Contributions.Date, Contributions.Amount, [Chart of Accounts].Description, Contributions.CheckNo AS ParishCheckNumber FROM [Chart of Accounts] RIGHT JOIN ((Zip RIGHT JOIN mastermemberindex ON Zip.ID = mastermemberindex.zipid) LEFT JOIN Contributions ON mastermemberindex.membershipid = Contributions.MembershipID) ON [Chart of Accounts].[COA ID] = Contributions.AccountID WHERE (((Contributions.Date) Between [Enter Begining Date] And [Enter Ending Date]) AND (([Chart of Accounts].Description)=[Fund to limit to])); Last Updated: Tuesday, January 5, 2016 Page 9

10 Page 10 Query Name: FindMemberDuid Purpose: this query is used to find the Member_Duid (member dio unique id) so that when adding that member to the staff list you know you have the correct person. Remember you will only be able to see the members of families that are in your database. If the member is part of a family that is part of a different parish you won t be able to see their information using this. The parish that they are part of would have to be contacted. Date Created(Updated): ( ) SELECT members.memberid, members.family_duid, members.firstname, members.middlename, members.nickname, members.lastname, members.diouniqueid AS member_duid FROM members; Query Name: SumTaxDeductForDatesRange1 Purpose: To list the tax-deductible funds for range 1 Date Created (Updated): ( ) SELECT Sum(Contributions.Amount) AS SumOfAmount, Contributions.MembershipID FROM Contributions INNER JOIN [Chart of Accounts] ON Contributions.AccountID = [Chart of Accounts].[COA ID] WHERE (((Contributions.Date) Between [Enter starting date Range 1] And [Enter Ending Date Range 1]) AND (([Chart of Accounts].TaxDeduct)=True)) GROUP BY Contributions.MembershipID; Last Updated: Tuesday, January 5, 2016 Page 10

11 Page 11 Query Name: SumTaxDeductForDatesRange2 Purpose: To list the tax-deductible funds for range 2. Date Created (Updated): ( ) SELECT Sum(Contributions.Amount) AS SumOfAmount, Contributions.MembershipID FROM Contributions INNER JOIN [Chart of Accounts] ON Contributions.AccountID = [Chart of Accounts].[COA ID] WHERE (((Contributions.Date) Between [Enter starting date Range 2] And [Enter Ending Date Range 2]) AND (([Chart of Accounts].TaxDeduct)=True)) GROUP BY Contributions.MembershipID; Query Name: DSB1001FamGivenInButNotIn Purpose: This query lists the registered families according to DSB1001 that gave to taxdeductible funds in date range 1 but not in date range 2. Required Queries: AllRegisteredFamiliesDSB1001, SumTaxDeductForDatesRange1, SumTaxDeductForDatesRange2 Date Created (Updated): ( ) SELECT cq_allregisteredfamiliesdsb1001.lastname, cq_allregisteredfamiliesdsb1001.[mailing Name], cq_allregisteredfamiliesdsb1001.homephone, cq_allregisteredfamiliesdsb1001.status, cq_allregisteredfamiliesdsb1001.envelopes, cq_allregisteredfamiliesdsb1001.envelope_number, cq_allregisteredfamiliesdsb1001.diouniqueid, cq_allregisteredfamiliesdsb1001.famgroup, cq_allregisteredfamiliesdsb1001.membershipid, cq_sumtaxdeductfordatesrange1.sumofamount AS SumRange1, cq_sumtaxdeductfordatesrange2.sumofamount AS SumRange2 FROM cq_sumtaxdeductfordatesrange2 RIGHT JOIN (cq_sumtaxdeductfordatesrange1 RIGHT JOIN cq_allregisteredfamiliesdsb1001 ON cq_sumtaxdeductfordatesrange1.membershipid = cq_allregisteredfamiliesdsb1001.membershipid) ON cq_sumtaxdeductfordatesrange2.membershipid = cq_allregisteredfamiliesdsb1001.membershipid WHERE (((cq_sumtaxdeductfordatesrange1.sumofamount)>0) AND ((cq_sumtaxdeductfordatesrange2.sumofamount)=0 Or (cq_sumtaxdeductfordatesrange2.sumofamount) Is Null)); Last Updated: Tuesday, January 5, 2016 Page 11

12 Page 12 Query Name: AllRegisteredFamiliesDSB1001WithAddress Purpose: To list all the families according to the DSB1001 with their address Date Created/Update: SELECT mastermemberindex.lastname, mastermemberindex.[mailing Name], mastermemberindex.homephone, mastermemberindex.status, mastermemberindex.envelopes, mastermemberindex.envelope_number, mastermemberindex.diouniqueid, FamGroup_Lookup.FamGroup, mastermemberindex.membershipid, mastermemberindex.address_1, mastermemberindex.address_2, Zip.City, Zip.State, Zip.Zip, mastermemberindex.zipplus, mastermemberindex.membership_date FROM Zip RIGHT JOIN (mastermemberindex LEFT JOIN FamGroup_Lookup ON mastermemberindex.famgroupid = FamGroup_Lookup.FamGroupID) ON Zip.ID = mastermemberindex.zipid WHERE (((mastermemberindex.status)=true)) OR (((mastermemberindex.status)=false) AND ((FamGroup_Lookup.FamGroup)="Active" Or (FamGroup_Lookup.FamGroup)="invalid Address" Or (FamGroup_Lookup.FamGroup)="registered inactive")); Query Name: 0$ThatHaveEnvRegB4Date Purpose: To list all families that have the Send Contribution Envelope checked but has donated 0 or less to any of the tax deductible funds. Required Queries: SumTaxDeductForDates Date Created/Updated: SELECT MasterMemberIndex.[Mailing Name], MasterMemberIndex.Address_1, MasterMemberIndex.Address_2, Zip.City, Zip.State, Zip.Zip, MasterMemberIndex.HomePhone, MasterMemberIndex.envelopes, MasterMemberIndex.envelope_number, MasterMemberIndex.MembershipID, IIf(IsNull([SumOfAmount]),0,[sumofamount]) AS [Donated Amount], MasterMemberIndex.membership_date FROM (MasterMemberIndex LEFT JOIN Zip ON MasterMemberIndex.ZipID = Zip.ID) LEFT JOIN cq_sumtaxdeductfordates ON MasterMemberIndex.MembershipID = cq_sumtaxdeductfordates.membershipid WHERE (((MasterMemberIndex.envelopes)=True) AND ((IIf(IsNull([SumOfAmount]),0,[sumofamount]))<=0) AND ((MasterMemberIndex.membership_date)<[Registered Before Date ex ])); Last Updated: Tuesday, January 5, 2016 Page 12

13 Page 13 Query Name: RegFamDSB1001ButNotPrimary Purpose: To list all the families according to the DSB1001 that don t have this parish as their Parish Of Registration Date Created/Update: SELECT mastermemberindex.lastname, mastermemberindex.[mailing Name], mastermemberindex.homephone, mastermemberindex.status, mastermemberindex.envelopes, mastermemberindex.envelope_number, mastermemberindex.diouniqueid, FamGroup_Lookup.FamGroup, mastermemberindex.membershipid, mastermemberindex.address_1, Zip.City, Zip.State, Zip.Zip, mastermemberindex.zipplus, mastermemberindex.ownerorganizationid FROM Zip RIGHT JOIN (mastermemberindex LEFT JOIN FamGroup_Lookup ON mastermemberindex.famgroupid = FamGroup_Lookup.FamGroupID) ON Zip.ID = mastermemberindex.zipid WHERE (((mastermemberindex.status)=true) AND ((mastermemberindex.ownerorganizationid)<>dlookup("[entry]","inidata","section = ""orgdata"" and entry_name = ""parishid"""))) OR (((mastermemberindex.status)=false) AND ((FamGroup_Lookup.FamGroup)="Active" Or (FamGroup_Lookup.FamGroup)="invalid Address") AND ((mastermemberindex.ownerorganizationid)<>dlookup("[entry]","inidata","section = ""orgdata"" and entry_name = ""parishid"""))); Query Name: EthnicityCount Purpose: Purpose to count the Ethnicity of the members of Registered families according to the DSB1001. Excludes Deceased and Inactive members Required Queries: AllRegisteredFamiliesDSB1001 Date Created/Update: SELECT [Member EthnicBackground_Lookup].Description AS Ethnicity, Count(Members.MemberID) AS [Member Count] FROM cq_allregisteredfamiliesdsb1001 RIGHT JOIN (Members LEFT JOIN [Member EthnicBackground_Lookup] ON Members.EthnicID = [Member EthnicBackground_Lookup].EthnicID) ON cq_allregisteredfamiliesdsb1001.membershipid = Members.MembershipID WHERE (((cq_allregisteredfamiliesdsb1001.membershipid) Is Not Null) AND ((Members.MemberStatus)<>"Deceased" And (Members.MemberStatus)<>"inactive")) GROUP BY [Member EthnicBackground_Lookup].Description; Last Updated: Tuesday, January 5, 2016 Page 13

14 Page 14 Query Name: REListOfStudentsInClass Purpose: To list the First name, middle name, Last name and suffix of the members in a particular year, session, and class. Date Created/Update: SELECT tblsessions.schoolyear, tblsessions.session, tblclasslist.classdesc, Members.FirstName, Members.MiddleName, Members.LastName, Members.Suffix FROM (tblsessions RIGHT JOIN tblclasslist ON tblsessions.tblsessionsid = tblclasslist.tblsessionid) RIGHT JOIN (Members LEFT JOIN RED_StudentRecords ON Members.MemberID = RED_StudentRecords.MemberID) ON tblclasslist.classlistid = RED_StudentRecords.ClassListID WHERE (((tblsessions.schoolyear)=[enter School Year]) AND ((tblsessions.session)= [enter session name]) AND ((tblclasslist.classdesc)=[enter class name])); Query Name: FamilyRecordsWithOutDUIDS Purpose: To list the families that do not have a DUID. Date Created/Update: SELECT mastermemberindex.membershipid, mastermemberindex.tag_name, mastermemberindex.lastname, mastermemberindex.envelope_number, mastermemberindex.ownerorganizationid, mastermemberindex.sourceorganizationid, mastermemberindex.diouniqueid FROM mastermemberindex WHERE (((mastermemberindex.diouniqueid) Is Null)); Query Name: MemberRecordsWithOutDUIDS Purpose: To list the Members that do not have a DUID. Date Created/Update: SELECT members.memberid, members.membershipid, members.family_duid, members.firstname, members.lastname, members.diouniqueid FROM members WHERE (((members.diouniqueid) Is Null)); Last Updated: Tuesday, January 5, 2016 Page 14

15 Page 15 Query Name: MissionInsightListingRequirements Purpose: To list the Members for displaying on Mission Insight and set the limitation on who to show by default the members marked Deceased are not show. Required Queries: AllRegisteredFamiliesDSB1001WithAddress Date Created/Update: / SELECT Members.LastName, Members.FirstName, cq_allregisteredfamiliesdsb1001withaddress.address_1 AS Address1, cq_allregisteredfamiliesdsb1001withaddress.address_2 AS Address2, cq_allregisteredfamiliesdsb1001withaddress.city, cq_allregisteredfamiliesdsb1001withaddress.state, cq_allregisteredfamiliesdsb1001withaddress.zip, Members.HomePhone, Members. Address, "" AS CongregantStatus, "" AS MemberByMeans, cq_allregisteredfamiliesdsb1001withaddress.membership_date AS FirstAttendDate, "" AS BaptismDate, "" AS MemberDate, Members.birthdate AS BirthDate, "" AS YearEnteredKindergarten, cq_allregisteredfamiliesdsb1001withaddress.status, cq_allregisteredfamiliesdsb1001withaddress.famgroup, Members.MemberStatus FROM cq_allregisteredfamiliesdsb1001withaddress INNER JOIN Members ON cq_allregisteredfamiliesdsb1001withaddress.membershipid = Members.MembershipID WHERE (((Members.MemberStatus)<>"Deceased")); Query Name: MissionInsightListingFinal Purpose: To create the final list for use on Mission Insight. Required Queries: AllRegisteredFamiliesDSB1001WithAddress, MissionInsightListingRequirements Date Created/Update: / SELECT cq_missioninsightlistingrequirements.lastname, cq_missioninsightlistingrequirements.firstname, cq_missioninsightlistingrequirements.address1, cq_missioninsightlistingrequirements.address2, cq_missioninsightlistingrequirements.city, cq_missioninsightlistingrequirements.state, cq_missioninsightlistingrequirements.zip, cq_missioninsightlistingrequirements.homephone, cq_missioninsightlistingrequirements. address, cq_missioninsightlistingrequirements.congregantstatus, cq_missioninsightlistingrequirements.memberbymeans, cq_missioninsightlistingrequirements.firstattenddate, cq_missioninsightlistingrequirements.baptismdate, cq_missioninsightlistingrequirements.memberdate, cq_missioninsightlistingrequirements.birthdate, cq_missioninsightlistingrequirements.yearenteredkindergarten FROM cq_missioninsightlistingrequirements; Last Updated: Tuesday, January 5, 2016 Page 15

16 Page 16 Query Name: Count by FamGroup and Status Purpose: To give a count of all the families that are in the various Status (Currently Registered Check Box) and Family Group combinations Required Queries: NONE Date Created/Update: SELECT IIf([status]=-1,"Currently Registered checked","currently Registered Not Checked") AS [Currently Registered], FamGroup_Lookup.FamGroup, Count(mastermemberindex.MembershipID) AS CountOfMembershipID FROM mastermemberindex INNER JOIN FamGroup_Lookup ON mastermemberindex.famgroupid = FamGroup_Lookup.FamGroupID GROUP BY IIf([status]=-1,"Currently Registered checked", "Currently Registered Not Checked"), FamGroup_Lookup.FamGroup; Query Name: Families with all members Deceased Purpose: To list all the families where all the members of that family are deceased so that you can see what the status and family groups of those families are. Date Created/Update: SELECT PossibleDesceasedFamilies.MembershipID, PossibleDesceasedFamilies.Family_DUID, PossibleDesceasedFamilies.[Count of Deceased Members], PossibleDesceasedFamilies.CountOfMembers, PossibleDesceasedFamilies.FamGroup, PossibleDesceasedFamilies.Status FROM (SELECT Members.MembershipID, Members.Family_DUID, Sum(IIf([DateOfDeath] Is Not Null Or [memberstatus]="deceased",1,0)) AS [Count of Deceased Members], Count(Members.MemberID) AS CountOfMembers, FamGroup_Lookup.FamGroup, MasterMemberIndex.Status FROM (Members INNER JOIN MasterMemberIndex ON Members.MembershipID = MasterMemberIndex.MembershipID) INNER JOIN FamGroup_Lookup ON MasterMemberIndex.FamGroupID = FamGroup_Lookup.FamGroupID GROUP BY Members.MembershipID, Members.Family_DUID, FamGroup_Lookup.FamGroup, MasterMemberIndex.Status) AS PossibleDesceasedFamilies WHERE (((PossibleDesceasedFamilies.[Count of Deceased Members])=[Countofmembers])); Last Updated: Tuesday, January 5, 2016 Page 16

17 Page 17 Last Updated: Tuesday, January 5, 2016 Page 17

18 Page 18 Query Name: Families With Deceased Members Purpose: To list the members that are marked deceased or have a date of death Required Queries: NONE Date Created/Update: SELECT Members.MembershipID, Members.Family_DUID, Members.DateOfDeath, Members.FirstName, Members.MiddleName, Members.LastName, Members.MemberType, Members.MemberStatus, MasterMemberIndex.Status, FamGroup_Lookup.FamGroup FROM (Members INNER JOIN MasterMemberIndex ON Members.MembershipID = MasterMemberIndex.MembershipID) INNER JOIN FamGroup_Lookup ON MasterMemberIndex.FamGroupID = FamGroup_Lookup.FamGroupID WHERE (((Members.DateOfDeath) Is Not Null)) OR (((Members.MemberStatus)="Deceased")); Query Name: HouseHoldsBetweenAges Purpose: To list the Registered households according to the DSB1001 that have members between the ages that are input at the time the query is run. Required Queries: AllRegisteredFamiliesDSB1001WithAddress Date Created/Update: SELECT Members.MembershipID, cq_allregisteredfamiliesdsb1001withaddress.lastname, cq_allregisteredfamiliesdsb1001withaddress.[mailing Name], cq_allregisteredfamiliesdsb1001withaddress.address_1, cq_allregisteredfamiliesdsb1001withaddress.address_2, cq_allregisteredfamiliesdsb1001withaddress.city, cq_allregisteredfamiliesdsb1001withaddress.state, cq_allregisteredfamiliesdsb1001withaddress.zip, cq_allregisteredfamiliesdsb1001withaddress.zipplus FROM cq_allregisteredfamiliesdsb1001withaddress INNER JOIN Members ON cq_allregisteredfamiliesdsb1001withaddress.membershipid = Members.MembershipID WHERE (((DateDiff("yyyy",[Birthdate],Now())+Int(Format(Now(),"mmdd")< Format([Birthdate],"mmdd"))+1-1)>=CInt([Lower Age Range]) And (DateDiff("yyyy",[Birthdate],Now())+Int(Format(Now(),"mmdd")< Format([Birthdate],"mmdd"))+1-1)<=CInt([higher Age Range])) AND ((Members.DateOfDeath) Is Null) AND ((Members.MemberStatus)<>"Deceased")) GROUP BY Members.MembershipID, cq_allregisteredfamiliesdsb1001withaddress.lastname, cq_allregisteredfamiliesdsb1001withaddress.[mailing Name], cq_allregisteredfamiliesdsb1001withaddress.address_1, cq_allregisteredfamiliesdsb1001withaddress.address_2, cq_allregisteredfamiliesdsb1001withaddress.city, cq_allregisteredfamiliesdsb1001withaddress.state, cq_allregisteredfamiliesdsb1001withaddress.zip, cq_allregisteredfamiliesdsb1001withaddress.zipplus; Last Updated: Tuesday, January 5, 2016 Page 18

19 Page 19 Query Name: CountOfStudentsInClass Purpose: Used for a modified report for Teacher roster that includes the room number and count of kids Date Created/Update: SELECT RED_StudentRecords.ClassListID, Count(RED_StudentRecords.MemberID) AS StudentCount FROM RED_StudentRecords GROUP BY RED_StudentRecords.ClassListID; Query Name: For_RPTDSB_teacherRoster Purpose: used for the custom report rptdsb_teacherroster so that the room number and count of kids in class are displayed. Required Queries: CountOfStudentsInClass Date Created/Update: SELECT qryred_teacherlist.schoolyear, qryred_teacherlist.memberid, qryred_teacherlist.membershipid, qryred_teacherlist.lastname, qryred_teacherlist.first_name, qryred_teacherlist.suffix, qryred_teacherlist.tblsessionid, qryred_teacherlist.session, qryred_teacherlist.classlistid, qryred_teacherlist.classdesc, qryred_teacherlist.grade_desc, qryred_teacherlist.teachertype, qryred_teacherlist.workphone, qryred_teacherlist.homephone, Members.CellPhone, tblclasslist.roomnumber, cq_countofstudentsinclass.studentcount FROM cq_countofstudentsinclass RIGHT JOIN ((qryred_teacherlist LEFT JOIN Members ON qryred_teacherlist.memberid = Members.MemberID) LEFT JOIN tblclasslist ON qryred_teacherlist.classlistid = tblclasslist.classlistid) ON cq_countofstudentsinclass.classlistid = qryred_teacherlist.classlistid; Last Updated: Tuesday, January 5, 2016 Page 19

20 Page 20 Query Name: DSB1001DonatedToTaxDeductible Purpose: To list the Registered families according to the DSB1001 document that have donated to the specified date range for the tax deductible funds. Required Queries: SumTaxDeductForDates, AllRegisteredFamiliesDSB1001WithAddress Date Created/Update: SELECT cq_allregisteredfamiliesdsb1001withaddress.lastname, cq_allregisteredfamiliesdsb1001withaddress.[mailing Name], cq_allregisteredfamiliesdsb1001withaddress.homephone, cq_allregisteredfamiliesdsb1001withaddress.status, cq_allregisteredfamiliesdsb1001withaddress.envelopes, cq_allregisteredfamiliesdsb1001withaddress.envelope_number, cq_allregisteredfamiliesdsb1001withaddress.diouniqueid, cq_allregisteredfamiliesdsb1001withaddress.famgroup, cq_allregisteredfamiliesdsb1001withaddress.membershipid, cq_allregisteredfamiliesdsb1001withaddress.address_1, cq_allregisteredfamiliesdsb1001withaddress.address_2, cq_allregisteredfamiliesdsb1001withaddress.city, cq_allregisteredfamiliesdsb1001withaddress.state, cq_allregisteredfamiliesdsb1001withaddress.zip, cq_allregisteredfamiliesdsb1001withaddress.zipplus, cq_allregisteredfamiliesdsb1001withaddress.membership_date, cq_sumtaxdeductfordates.sumofamount FROM cq_sumtaxdeductfordates INNER JOIN cq_allregisteredfamiliesdsb1001withaddress ON cq_sumtaxdeductfordates.membershipid = cq_allregisteredfamiliesdsb1001withaddress.membershipid; Last Updated: Tuesday, January 5, 2016 Page 20

21 Page 21 Query Name: ConfirmationCard Purpose: To list the students in a particular year, session, and Class with the information needed for the confirmation card. This was originally intended for the Confirmation Card but will also work as information needed by class of the other sacraments. This query will ask for the following: Enter RE year as xxxx: This is the year the students are in Enter RE session name: This is the name of the session that the students are in Enter RE Class Name: This is the name of the class the students are in Date Created/Update: / SELECT tblsessions.schoolyear, tblsessions.session, tblclasslist.classdesc, Members.FirstName, Members.MiddleName, Members.LastName, [FirstName] & " " & IIf(IsNull([middlename]) Or [middlename]="","",[middlename] & " ") & members.[lastname] AS FullName, Members.Suffix, Members.Salutation, MasterMemberIndex.Address_1, MasterMemberIndex.ZipPlus, MasterMemberIndex.Address_2, Zip.State, Zip.City, Zip.Zip, Members.Birthdate, Members.BirthPlaceText AS BirthPlace, SacBaptism.DateCompleted AS BaptismDate, USParishes.Parish AS ParishOfBaptism, USParishes.Add_1 AS ParishOfBaptismAddress, USParishes.Add_2 AS ParishOfBaptismAddress2, USParishes.City AS ParishOfBaptismCity, USParishes.State AS ParishOfBaptismState, USParishes.Zip AS ParishOfBaptismZip, Members.MotherMaidenName, Members.MotherMemberText, Members.FatherMemberText, DLookUp("[parish]","usparishes","parishid = " & DLookUp("[entry]","inidata","section = ""orgdata"" and entry_name = ""parishid""")) AS HomeParish, DLookUp("[city]","usparishes","parishid = " & DLookUp("[entry]","inidata","section = ""orgdata"" and entry_name = ""parishid""")) AS HomeParishCity, USParishes_1.Parish AS ConfirmationParish, USParishes_1.City AS ConfirmationParishCity, SacConfirmation.DateCompleted AS Confirmationdate, SacConfirmation.CelebrantText AS ConfirmationCelebrant, SacConfirmation.SponsorText AS ConfirmationSponsor, SacConfirmation.ConfirmationName FROM USParishes AS USParishes_1 RIGHT JOIN ((USParishes RIGHT JOIN ((Zip RIGHT JOIN (((tblsessions RIGHT JOIN tblclasslist ON tblsessions.tblsessionsid = tblclasslist.tblsessionid) RIGHT JOIN (Members RIGHT JOIN RED_StudentRecords ON Members.MemberID = RED_StudentRecords.MemberID) ON tblclasslist.classlistid = RED_StudentRecords.ClassListID) LEFT JOIN MasterMemberIndex ON Members.MembershipID = MasterMemberIndex.MembershipID) ON Zip.ID = MasterMemberIndex.ZipID) LEFT JOIN SacBaptism ON Members.MemberGUID = SacBaptism.MemberGUID) ON USParishes.ParishID = SacBaptism.ParishID) LEFT JOIN SacConfirmation ON Members.MemberGUID = SacConfirmation.MemberGUID) ON USParishes_1.ParishID = SacConfirmation.ParishID WHERE (((tblsessions.schoolyear)=[enter RE year as xxxx]) AND ((tblsessions.session)=[enter RE session name]) AND ((tblclasslist.classdesc)= [Enter RE Class name])); Last Updated: Tuesday, January 5, 2016 Page 21

22 Page 22 Query Name: SABabtismCounts0-6 Purpose: To list the counts of baptisms between the Start date and end date entered for those that don t have a birthday, less than 1, and between 1 and 6. This assumes that the parish selected for the baptism is the same parish that the query is being run from. Date Created/Update: SELECT cc.ranges, Count(cc.Ranges) AS CountOfRanges FROM (SELECT IIf([ageatbaptism] Is Null,"No Birthdate",IIf([ageatbaptism]>=0 And [ageatbaptism]<1,"less than 1",IIf([ageatbaptism]>=1 And [ageatbaptism]<7,"1-6", "No Birthdate"))) AS Ranges, DateDiff('yyyy',Members.Birthdate,SacBaptism.DateCompleted)+Int(Format( SacBaptism.DateCompleted,'mmdd')<Format(Members.Birthdate,'mmdd')) AS AgeAtBaptism FROM (Members INNER JOIN SacBaptism ON Members.MemberGUID = SacBaptism.MemberGUID) INNER JOIN IniData ON SacBaptism.ParishID = IniData.OwnerOrganizationID WHERE (((DateDiff('yyyy',Members.Birthdate,SacBaptism.DateCompleted)+Int(Format( SacBaptism.DateCompleted,'mmdd')<Format(Members.Birthdate,'mmdd')))>=0 And (DateDiff('yyyy',Members.Birthdate,SacBaptism.DateCompleted)+Int(Format( SacBaptism.DateCompleted,'mmdd')<Format(Members.Birthdate,'mmdd')))<7) AND ((SacBaptism.DateCompleted)>=[Enter starting date] And (SacBaptism.DateCompleted)<=[Enter ending date]) AND ((SacBaptism.IsComplete)=True) AND ((IniData.section)='OrgData') AND ((IniData.entry_name)='ParishID')) OR (((SacBaptism.DateCompleted)>=[Enter starting date] And (SacBaptism.DateCompleted)<=[Enter ending date]) AND ((SacBaptism.IsComplete)=True) AND ((IniData.section)='OrgData') AND ((IniData.entry_name)='ParishID') AND ((Members.Birthdate) Is Null))) AS cc GROUP BY cc.ranges; Last Updated: Tuesday, January 5, 2016 Page 22

23 Page 23 Query Name: SAConfirmationCounts Purpose: To list the counts of Confirmations between the Start date and end date entered for those that don t have a birthday, less than 18, and 18+. This assumes that the parish selected for the Confirmation is the same parish that the query is being run from. Date Created/Update: SELECT cc.ranges, Count(cc.Ranges) AS CountOfRanges FROM (SELECT IIf([ageatconfirmation] Is Null,"No Birthdate",IIf([ageatconfirmation]>=0 And [ageatconfirmation]<18,"less than 18",IIf([ageatconfirmation]>=18,"18+","No Birthdate"))) AS Ranges, DateDiff('yyyy',[Members].[Birthdate],[Sacconfirmation].[DateCompleted])+Int(Format( [Sacconfirmation].[DateCompleted],'mmdd')<Format([Members].[Birthdate],'mmdd')) AS AgeAtconfirmation, SacConfirmation.DateCompleted, SacConfirmation.IsComplete, IniData.section, IniData.entry_name, Members.Birthdate FROM IniData INNER JOIN (Members INNER JOIN SacConfirmation ON Members.MemberGUID = SacConfirmation.MemberGUID) ON IniData.OwnerOrganizationID = SacConfirmation.ParishID WHERE (((SacConfirmation.DateCompleted)>= [Enter Start date] And (SacConfirmation.DateCompleted)<= [Enter End date]) AND ((SacConfirmation.IsComplete)=True) AND ((IniData.section)='OrgData') AND ((IniData.entry_name)='ParishID')) OR (((SacConfirmation.DateCompleted)>= [Enter Start date] And (SacConfirmation.DateCompleted)<= [Enter End date]) AND ((SacConfirmation.IsComplete)=True) AND ((IniData.section)='OrgData') AND ((IniData.entry_name)='ParishID') AND ((Members.Birthdate) Is Null))) AS cc GROUP BY cc.ranges; Last Updated: Tuesday, January 5, 2016 Page 23

24 Page 24 Query Name: SAReconciliationCounts Purpose: To list the count of Reconciliations between the Start date and end date entered. This assumes that the parish selected for the Confirmation is the same parish that the query is being run from. Date Created/Update: SELECT cc.ranges, Count(cc.ranges) AS CountOfranges FROM (SELECT "Reconciliation" AS ranges, DateDiff('yyyy',[Members].[Birthdate],[SacReconciliationPrep].[DateCompleted])+Int(Format ([SacReconciliationPrep].[DateCompleted],'mmdd')<Format([Members].[Birthdate],'mmdd')) AS AgeAtrecon, SacReconciliationPrep.DateCompleted, SacReconciliationPrep.IsComplete, IniData.section, IniData.entry_name, Members.Birthdate FROM Members INNER JOIN (IniData INNER JOIN SacReconciliationPrep ON IniData.OwnerOrganizationID = SacReconciliationPrep.ParishID) ON Members.MemberGUID = SacReconciliationPrep.MemberGUID WHERE (((SacReconciliationPrep.DateCompleted)>=[Enter Start date] And (SacReconciliationPrep.DateCompleted)<=[Enter End Date]) AND ((SacReconciliationPrep.IsComplete)=True) AND ((IniData.section)='OrgData') AND ((IniData.entry_name)='ParishID')) OR (((SacReconciliationPrep.DateCompleted)>= [Enter Start date] And (SacReconciliationPrep.DateCompleted)<=[Enter End Date]) AND ((SacReconciliationPrep.IsComplete)=True) AND ((IniData.section)='OrgData') AND ((IniData.entry_name)='ParishID') AND ((Members.Birthdate) Is Null))) AS cc GROUP BY cc.ranges; Last Updated: Tuesday, January 5, 2016 Page 24

25 Page 25 Query Name: SARCIACounts Purpose: To list the count of Catechumens and Candidates between the Start date and end date entered. This assumes that the parish selected for the RCIA, Baptism, Eucharist and Confirmation is the same parish that the query is being run from. Date Created/Update: SELECT CRCIA.type, CRCIA.ranges, Count(CRCIA.ranges) AS counts FROM (SELECT CANCAT.MemberGUID, CANCAT.type, SacRCIA.IsComplete, SacRCIA.DateCompleted, SacRCIA.ParishID, IniData.section, IniData.entry_name, Members.MemberID, Members.MembershipID, Members.Birthdate, IIf([ageatrcia] Is Null, "No Birthdate",IIf([ageatrcia]>=0 And [ageatrcia]<18, "Less than 18",IIf([ageatrcia]>=18,"18+","No Birthdate"))) AS ranges, DateDiff('yyyy',[Members].[Birthdate],[SacRCIA].[DateCompleted])+Int(Format( [Sacrcia].[DateCompleted],'mmdd')<Format([Members].[Birthdate],'mmdd')) AS AgeAtRCIA FROM Members INNER JOIN (IniData INNER JOIN ((SELECT SacEucharist.MemberGUID, SacEucharist.DateCompleted, SacConfirmation.DateCompleted, SacBaptism.DateCompleted, SacEucharist.ParishID, SacConfirmation.ParishID, SacBaptism.ParishID, IniData.section, IniData.entry_name, IIf([SacConfirmation].[DateCompleted]=[sacbaptism].[DateCompleted] And [SacConfirmation].[ParishID]=[sacbaptism].[ParishID],"Catechumens","Candidates") AS type FROM IniData INNER JOIN ((SacEucharist INNER JOIN SacConfirmation ON (SacConfirmation.ParishID = SacEucharist.ParishID) AND (SacEucharist.MemberGUID = SacConfirmation.MemberGUID) AND (SacEucharist.DateCompleted = SacConfirmation.DateCompleted)) INNER JOIN SacBaptism ON SacConfirmation.MemberGUID = SacBaptism.MemberGUID) ON IniData.OwnerOrganizationID = SacConfirmation.ParishID WHERE (((IniData.section)="orgdata") AND ((IniData.entry_name)="parishid"))) AS CANCAT INNER JOIN SacRCIA ON CANCAT.MemberGUID = SacRCIA.MemberGUID) ON IniData.OwnerOrganizationID = SacRCIA.ParishID) ON Members.MemberGUID = CANCAT.MemberGUID WHERE (((SacRCIA.IsComplete)=True) AND ((SacRCIA.DateCompleted)>=[Enter Start date] And (SacRCIA.DateCompleted)<=[Enter End Date]) AND ((IniData.section)="orgdata") AND ((IniData.entry_name)="parishid"))) AS CRCIA GROUP BY CRCIA.type, CRCIA.ranges; Last Updated: Tuesday, January 5, 2016 Page 25

26 Page 26 Query Name: SAFuneralCounts Purpose: To list the count of Funerals between the Start date and end date entered that were performed at the parish. Date Created/Update: SELECT SAFuneral.Ranges, Count(SAFuneral.MemberID) AS [Count] FROM (SELECT "Funerals" AS Ranges, Members.MemberID, Members.MembershipID, SacDeath.DateCompleted, SacDeath.DateOfDeath, SacDeath.ParishID, IniData.section, IniData.entry_name FROM IniData INNER JOIN (Members INNER JOIN SacDeath ON Members.MemberGUID = SacDeath.MemberGUID) ON IniData.OwnerOrganizationID = SacDeath.ParishID WHERE (((SacDeath.DateCompleted)>=[Enter Start date] And (SacDeath.DateCompleted)<=[Enter End Date]) AND ((SacDeath.DateOfDeath) Is Not Null) AND ((IniData.section)="orgdata") AND ((IniData.entry_name)="parishid"))) AS SAFuneral GROUP BY SAFuneral.Ranges; Query Name: SAStudentCounts Purpose: To list the count of students in each grade level selected for the classes based on the year entered. Date Created/Update: SELECT tblsessions.schoolyear, RED_GradeLookup.Grade_Desc, Count(Members.MemberID) AS CountOfMemberID FROM ((tblsessions INNER JOIN tblclasslist ON tblsessions.tblsessionsid = tblclasslist.tblsessionid) INNER JOIN RED_GradeLookup ON tblclasslist.red_gradeid = RED_GradeLookup.RED_GradeID) INNER JOIN (Members INNER JOIN RED_StudentRecords ON Members.MemberID = RED_StudentRecords.MemberID) ON tblclasslist.classlistid = RED_StudentRecords.ClassListID GROUP BY tblsessions.schoolyear, RED_GradeLookup.Grade_Desc HAVING (((tblsessions.schoolyear)=[enter year])); Last Updated: Tuesday, January 5, 2016 Page 26

27 Page 27 Query Name: SATeacherCounts Purpose: To list the count of teachers by the grade chosen for the class for the year entered. Date Created/Update: SELECT cc.schoolyear, cc.grade_desc, Count(cc.Teacher1_MemberID) AS [count of Teachers] FROM (SELECT tblclasslist.teacher1_memberid, tblsessions.schoolyear, RED_GradeLookup.Grade_Desc FROM (Members INNER JOIN (tblsessions INNER JOIN tblclasslist ON tblsessions.tblsessionsid = tblclasslist.tblsessionid) ON Members.MemberID = tblclasslist.teacher1_memberid) INNER JOIN RED_GradeLookup ON tblclasslist.red_gradeid = RED_GradeLookup.RED_GradeID union all SELECT tblclasslist.teacher2_memberid, tblsessions.schoolyear, RED_GradeLookup.Grade_Desc FROM (Members INNER JOIN (tblsessions INNER JOIN tblclasslist ON tblsessions.tblsessionsid = tblclasslist.tblsessionid) ON Members.MemberID = tblclasslist.teacher2_memberid) INNER JOIN RED_GradeLookup ON tblclasslist.red_gradeid = RED_GradeLookup.RED_GradeID union all SELECT tblclasslist.teacher3_memberid, tblsessions.schoolyear, RED_GradeLookup.Grade_Desc FROM (Members INNER JOIN (tblsessions INNER JOIN tblclasslist ON tblsessions.tblsessionsid = tblclasslist.tblsessionid) ON Members.MemberID = tblclasslist.teacher3_memberid) INNER JOIN RED_GradeLookup ON tblclasslist.red_gradeid = RED_GradeLookup.RED_GradeID) AS cc GROUP BY cc.schoolyear, cc.grade_desc HAVING (((cc.schoolyear)=[enter year])); Last Updated: Tuesday, January 5, 2016 Page 27

28 Page 28 Query Name: RegFamiliesDSB1001MembersValid Purpose: To list the members of families. When run the query asks for an as of date which is entered in the format of mm-dd-yyyy. If member has a date of death, status is Deceased or Inactive they are not listed. Required Queries: AllRegisteredFamiliesDSB1001 Date Created/Update: 8/8/14 SELECT Members.MemberID, Members.FirstName, Members.MiddleName, Members.LastName, IIf(IsNull([Birthdate]),"No Birth Date",IIf(DateDiff("yyyy",[Birthdate], [As of Date])+Int(Format([As of Date],"mmdd")<Format([Birthdate],"mmdd"))<18, "Less Than 18","18 or Older")) AS Age, Members.birthdate, Members.Family_DUID, Members.MembershipID AS FamilyID FROM Members INNER JOIN cq_allregisteredfamiliesdsb1001 ON Members.MembershipID = cq_allregisteredfamiliesdsb1001.membershipid WHERE (((Members.DateOfDeath) Is Null) AND ((Members.MemberStatus)<>"Deceased" And (Members.MemberStatus)<>"inactive")); Query Name: SABabtismCounts0-6Valid Purpose: To list the members that have a baptism record that was completed between the dates entered or the completed date is blank. Date Created/Update: SELECT Members.MemberID, Members.MembershipID, Members.FirstName, Members.MiddleName, Members.LastName, IIf([ageatbaptism] Is Null,"Can't calculate age",iif([ageatbaptism]>=0 And [ageatbaptism]<1,"less than 1",IIf([ageatbaptism]>=1 And [ageatbaptism]<7, "1-6","7 or older"))) AS Ranges, DateDiff('yyyy',Members.Birthdate,SacBaptism.DateCompleted)+ Int(Format(SacBaptism.DateCompleted,'mmdd')<Format(Members.Birthdate,'mmdd')) AS AgeAtBaptism, SacBaptism.DateCompleted, SacBaptism.IsComplete, Members.Birthdate, SacBaptism.ParishID, SacBaptism.ParishText FROM Members INNER JOIN SacBaptism ON Members.MemberGUID = SacBaptism.MemberGUID WHERE (((SacBaptism.DateCompleted)>=[Enter starting date] And (SacBaptism.DateCompleted)<=[Enter ending date])) OR (((SacBaptism.DateCompleted) Is Null)); Last Updated: Tuesday, January 5, 2016 Page 28

29 Page 29 Query Name: SAConfirmationCountsValid Purpose: To list the members that have a confirmation record that was completed between the dates entered or the completed date is blank. Date Created/Update: SELECT Members.MemberID, Members.MembershipID, Members.FirstName, Members.MiddleName, Members.LastName, IIf([ageatconfirmation] Is Null, "Can't Calculate Age",IIf([ageatconfirmation]>=0 And [ageatconfirmation]<18, "Less than 18",IIf([ageatconfirmation]>=18,"18+","No Birthdate"))) AS Ranges, DateDiff('yyyy',[Members].[Birthdate],[Sacconfirmation].[DateCompleted])+ Int(Format([Sacconfirmation].[DateCompleted],'mmdd')<Format([Members].[Birthdate], 'mmdd')) AS AgeAtconfirmation, SacConfirmation.DateCompleted, SacConfirmation.IsComplete, Members.Birthdate, SacConfirmation.ParishID, SacConfirmation.ParishText FROM Members INNER JOIN SacConfirmation ON Members.MemberGUID = SacConfirmation.MemberGUID WHERE (((SacConfirmation.DateCompleted)>=[Enter Start date] And (SacConfirmation.DateCompleted)<=[Enter End date])) OR (((SacConfirmation.DateCompleted) Is Null)); Query Name: SADeathCount Purpose: To list the members that have a date of death between the dates entered that are registered to this parish. Date Created/Update: SELECT count.count, Count(count.MembershipID) AS CountOfMembershipID FROM (SELECT "Count" as Count, members.membershipid, members.memberid, members.firstname, members.lastname, members.dateofdeath, IniData.section, IniData.entry_name FROM IniData INNER JOIN (members INNER JOIN MasterMemberIndex ON members.membershipid = MasterMemberIndex.MembershipID) ON IniData.OwnerOrganizationID = MasterMemberIndex.OwnerOrganizationID WHERE (((members.dateofdeath)>=[enter Start Date] And (members.dateofdeath)<=[enter End Date]) AND ((IniData.section)="Orgdata") AND ((IniData.entry_name)="Parishid"))) AS [count] GROUP BY count.count; Last Updated: Tuesday, January 5, 2016 Page 29

ConnectNow Family Directory: How to Manage Your Families

ConnectNow Family Directory: How to Manage Your Families ConnectNow Family Directory: How to Manage Your Families Nina Hodge Support Representative ParishSOFT Why Family Directory? Input/update basic family information Mailings/communication with families/groups

More information

Catholic Diocese of Salt Lake City

Catholic Diocese of Salt Lake City FINAL 4/20/13 Catholic Diocese of Salt Lake City Version 2.0 As of April 20, 2013 Table of Contents FAMILY AND MEMBER INFORMATION... 2 HANDLING MULTIPLE OR DUPLICATE REGISTRANTS... 6 USING DATA ENTRY STANDARDS

More information

Duplicate Checker User Guide for Parishes

Duplicate Checker User Guide for Parishes Pub 20R2Parish, January 2009 for use with Family Directory Module for Parishes Version 3.6.26 and later 825 Victors Way Suite 200 Ann Arbor, MI 48108-2830 Web: www.parishsoft.com Email: info@parishsoft.com

More information

Registration Status for Family

Registration Status for Family Registration Status for SOP# Title: Description: SOP Details: DSB-1001 Recording family status This standard procedure outlines the process that should be followed when a parish is adding or modifying

More information

CHRIST THE KING CATHOLIC CHURCH 7680 Gulf Highway Lake Charles, LA (337)

CHRIST THE KING CATHOLIC CHURCH 7680 Gulf Highway Lake Charles, LA (337) 7680 Gulf Highway Lake Charles, LA 70607 (337) 478 0213 Parish Religious Education Program Registration Information 2018-2019 Monday night - K-5 th grade (5:15-6:30 pm) begins Monday, August 27th Wednesday

More information

PARISH CENSUS SOFTWARE STANDARD OPERATING PROCEDURES

PARISH CENSUS SOFTWARE STANDARD OPERATING PROCEDURES Contents Record Keeping Responsibilities... 3 Family and Member... 3 Administrative Staff, Assignments, Positions and Access Rights... 3 Offertory Funds, Batches, Contribution and Pledges... 3 Sacramental

More information

ParishSOFT Notifications:

ParishSOFT Notifications: ParishSOFT Notifications: The following information will describe how the notifications area works within ParishSOFT online, as of March 2018. Due to the request of the users and diocese across the US,

More information

RosterPro by Demosphere International, Inc.

RosterPro by Demosphere International, Inc. RosterPro by INDEX OF PAGES: Page 2 - Getting Started Logging In About Passwords Log In Information Retrieval Page 3 - Select Season League Home Page Page 4 - League Player Administration Page 5 - League

More information

Using the SDT in Access ARSI Training

Using the SDT in Access ARSI Training Using the SDT in Access ARSI Training Andrea Peach, Georgetown College During our training, we used Access to create queries for accessing the Student Data Tool. This tutorial will remind you how we: 1.

More information

Parish Round Table. Spring 2018

Parish Round Table. Spring 2018 Parish Round Table Spring 2018 Diocesan Annual Appeal 2017-2018 Prayer We praise and thank You, Father, for all the gifts You have generously given to us through Your Son, Jesus Christ. We pray Lord for

More information

Lab 15: EXL3 Microsoft Excel s AutoFill Tool, Multiple Worksheets, Charts and Conditional Formatting

Lab 15: EXL3 Microsoft Excel s AutoFill Tool, Multiple Worksheets, Charts and Conditional Formatting Lab 15: EXL3 Microsoft Excel s AutoFill Tool, Multiple Worksheets, Charts and Conditional Formatting Learn how to work with multiple worksheets, use the AutoFill tool, charts, and apply conditional formatting

More information

What s New at FamilySearch.org

What s New at FamilySearch.org S.C. Computer / Genealogy Special Interest Group What s New at FamilySearch.org March 13, 2014 The premier free Internet site which is important to everyone interested in family history is the recently

More information

The Scottish & Local History Library

The Scottish & Local History Library Opening Hours Monday 9.00am-7.30pm Tuesday 9.00am-7.30pm Wednesday 9.00am-5.00pm Thursday 10.00am-7.30pm Friday 9.00am-7.30pm Saturday 9.00am-5.00pm The Scottish & Local History Library Genealogical Sources

More information

What to Do if a Death Has Occurred

What to Do if a Death Has Occurred What to Do if a Death Has Occurred Since most deaths occur in health care institutions such as hospitals and nursing homes, the attending staff may provide you with some preliminary information. If the

More information

What To Do If A Death Has Occurred

What To Do If A Death Has Occurred What To Do If A Death Has Occurred Since most deaths occur in health care institutions such as hospitals and nursing homes, the attending staff may provide you with some preliminary information. If the

More information

Computer programs for genealogy- a comparison of useful and frequently used features- presented by Gary Warner, SGGEE database manager.

Computer programs for genealogy- a comparison of useful and frequently used features- presented by Gary Warner, SGGEE database manager. SGGEE Society for German Genealogy in Eastern Europe A Polish and Volhynian Genealogy Group Calgary, Alberta Computer programs for genealogy- a comparison of useful and frequently used features- presented

More information

WISEid Student Person Export/ Import (SRN)

WISEid Student Person Export/ Import (SRN) WISEid Student Person Export/ Import (SRN) WISEid Student Person Export (SRN) What is WISEid Export? The purpose of this data collection is to link students to their state assigned WISEid. The WISEid is

More information

Work Instruction. Submitting a Census Roster: Dropping Students and Recording Early Alerts

Work Instruction. Submitting a Census Roster: Dropping Students and Recording Early Alerts Submitting a Census Roster: Dropping Students and Recording Early Alerts Purpose Trigger Use this procedure to update and submit the Census Roster for a class. Instructors can drop a student and/or record

More information

FUNERAL DIRECTOR INSTRUCTIONS

FUNERAL DIRECTOR INSTRUCTIONS FUNERAL DIRECTOR INSTRUCTIONS The purpose of this handbook is to acquaint funeral directors with the Illinois vital registration system and to provide instructions for completing an Illinois death record

More information

ARCHDIOCESE OF MILWAUKEE SACRAMENTAL RECORDS INSTRUCTION MANUAL

ARCHDIOCESE OF MILWAUKEE SACRAMENTAL RECORDS INSTRUCTION MANUAL ARCHDIOCESE OF MILWAUKEE SACRAMENTAL RECORDS INSTRUCTION MANUAL INTRODUCTION Each parish is to possess a set of parish books including baptismal, marriage, and death registers as well as other registers

More information

Requesting Letters of Recommendation

Requesting Letters of Recommendation Requesting Letters of Recommendation Step 1: Ask your teacher IN PERSON Ask your teacher(s) if they will write a letter of recommendation for you. They are not obligated to do so! Asking them in person

More information

Census. Quick Guide. v onwards. Bromcom Computers Plc.

Census. Quick Guide. v onwards. Bromcom Computers Plc. Census Quick Guide v5.2016 onwards Bromcom Computers Plc. Prospect House 19-21 Homesdale Road Bromley BR2 9LY http://www.bromcom.com http://support.bromcom.com Contents Before you run the Census... 3 Areas

More information

Using Puzzilla.org to Find a Family to Research

Using Puzzilla.org to Find a Family to Research ADOPT-A-FAMILY #1: Using Puzzilla.org to Find a Family to Research Go to puzzilla.org and click sign in Sign in with your FamilySearch login Click OK to allow Puzzilla to load your tree from FamilySearch

More information

What To Do If A Death Has Occurred

What To Do If A Death Has Occurred What To Do If A Death Has Occurred Since most deaths occur in health care institutions such as hospitals and nursing homes, the attending staff may provide you with some preliminary information. If the

More information

10.2. Scanning Document Camera Scoring. Page 1 of 5. How do I score answer sheets using a document camera? STEP 1

10.2. Scanning Document Camera Scoring. Page 1 of 5. How do I score answer sheets using a document camera? STEP 1 Step by Step How do I score answer sheets using a document camera? STEP 1 Click on the Assessment icon in the top navigation bar. STEP 2 To locate your assessment in an assessment list, first select the

More information

Family Tree Analyzer Part II Introduction to the Menus & Tabs

Family Tree Analyzer Part II Introduction to the Menus & Tabs Family Tree Analyzer Part II Introduction to the Menus & Tabs Getting Started If you haven t already got FTAnalyzer installed and running you should see the guide Family Tree Analyzer Part I Installation

More information

Tech Committee Guardian System How-To

Tech Committee Guardian System How-To Adding A Player to a Team Initiating the Guardian Process The Team Manager adds the player to the team roster WITH a valid email for the player. This can be done as a new player or as an existing player.

More information

GRANDMA Online. 3. Welcome Screen. Simply clicking on Continue or pressing the Enter key will take you to the search page.

GRANDMA Online. 3. Welcome Screen. Simply clicking on Continue or pressing the Enter key will take you to the search page. GRANDMA Online 1. What is GrandmaOnline.org? This website provides online search capability for the GRANDMA database. GRANDMA is the Genealogical Registry and Database of Mennonite Ancestry. In practice,

More information

Sacramental Records. Jennifer Haselberger Chancellor for Canonical Affairs

Sacramental Records. Jennifer Haselberger Chancellor for Canonical Affairs Sacramental Records Jennifer Haselberger Chancellor for Canonical Affairs General Rules for Registers Each parish must have a baptismal register, marriage register, and death register (c. 535, 1) Parish

More information

Pastoral Recordbase (Event Tracking Database) Screen Shots

Pastoral Recordbase (Event Tracking Database) Screen Shots Pastoral Recordbase (Event Tracking Database) Screen Shots Pastoral Recordbase Screen Shots are available for FreeChurchForms.com visitors to view. I created the Pastoral Recordbase to help Pastors and/or

More information

Sanctioning A Tournament

Sanctioning A Tournament Sanctioning A Tournament How To Sanction A Pokémon Tournament 1 1. Log into your Pokémon Trainer Club account and select OP Tools Dashboard from the lefthand toolbar. Note: You must have the Organizer

More information

Consultation PTM (Parent s Guide) Consultation Mobile Apps (Parent s guide) Empower People. One Solution

Consultation PTM (Parent s Guide) Consultation Mobile Apps (Parent s guide) Empower People. One Solution Consultation PTM (Parent s Guide) Consultation Mobile Apps (Parent s guide) Empower People. One Solution Installing Mobile App on ios 1. Launch App Store on your device 2. Type in ASKnLearn within the

More information

Pre-Planning. NOT a legally binding document

Pre-Planning. NOT a legally binding document Pre-Planning Thank You for entrusting our family owned Funeral Home with your future arrangements. Our staff is dedicated to the highest level of professionalism, empathy & discretion. Enclosed is the

More information

They Grow up so Fast: A project on budgeting

They Grow up so Fast: A project on budgeting They Grow up so Fast: A project on budgeting The objective of this project is for you to set up a budget that would allow you to live the type of life you would like, as well as to understand what skills

More information

Human Capital Management: Step-by-Step Guide

Human Capital Management: Step-by-Step Guide Human Capital Management: Step-by-Step Guide Payroll Expense Transfers PETs (Regular Users) This guide describes how to create and submit a Payroll Expense Transfer (PET). PETs are used to move expenses

More information

Heredis may assign any number of information sources to each event.

Heredis may assign any number of information sources to each event. Sources Sources Heredis may assign any number of information sources to each event. Each source is an independent element, which is then assigned to one or more events. Heredis allows you the flexibility

More information

MYSA Direct Member Club Registration Setup Manual. Contents

MYSA Direct Member Club Registration Setup Manual. Contents MYSA Direct Member Club Registration Setup Manual Contents Introduction... 1 Log into your Account... 2 Creating Teams... 3 Creating Players... 6 Placing Players on a Team... 10 Creating a Coach or Team

More information

ATX Cremation - (512) Hours

ATX Cremation - (512) Hours What to Do if a Death Has Occurred Since most deaths occur in health care institutions such as hospitals and nursing homes, the attending staff may provide you with some preliminary information. If the

More information

Excel Lab 2: Plots of Data Sets

Excel Lab 2: Plots of Data Sets Excel Lab 2: Plots of Data Sets Excel makes it very easy for the scientist to visualize a data set. In this assignment, we learn how to produce various plots of data sets. Open a new Excel workbook, and

More information

Part 1 Topics. Differences in Names (Cont)

Part 1 Topics. Differences in Names (Cont) Beginning Genealogy Lorraine Dutcher Minor ldgene@verizon.net Part 1 Topics Tips for the Beginner The Research Plan and Research Calendar How to Record and Evaluate Information How to Cite Sources Used

More information

Click here to give us your feedback. New FamilySearch Reference Manual

Click here to give us your feedback. New FamilySearch Reference Manual Click here to give us your feedback. New FamilySearch Reference Manual January 25, 2011 2009 by Intellectual Reserve, Inc. All rights reserved Printed in the United States of America English approval:

More information

United Church of Canada People Compared with Canada s Population

United Church of Canada People Compared with Canada s Population United Church of Canada People Compared with Canada s Population The following charts compare selected data for the United Church of Canada compared with similar data for Canada s population as a whole.

More information

Family History: Genealogy Made Easy with Lisa Louise Cooke

Family History: Genealogy Made Easy with Lisa Louise Cooke Family History: Genealogy Made Easy with Lisa Louise Cooke Welcome to this step-by-step series for beginning genealogists and more experienced ones who want to brush up or learn something new. I first

More information

DEVELOPING THE WORKFORCE

DEVELOPING THE WORKFORCE DEVELOPING THE WORKFORCE Assessing the quality of death certification: Instructions for the online assessment tool Resources and Tools 3 November 2016 About this series Capacity-building resources and

More information

Online Invoicing Manual

Online Invoicing Manual Online Invoicing Manual Table of Contents: 1. Introduction 2. Invoicing Process: a. Home Page: Your Projects b. Your Fiscal and Payment Details c. Invoice Number and Preview 1. Introduction This application

More information

APPLICATION TO AMEND CERTIFICATE OF DEATH

APPLICATION TO AMEND CERTIFICATE OF DEATH Mail application, supporting document(s), and the statutory filing fee of $15.00 to the address listed. This fee does not include the cost of a certified copy of the record after the amendment is filed.

More information

SPREADSHEET SET-UP. To switch simply click on the gear icon in the upper-left side of the page. Then click Experience the new Drive

SPREADSHEET SET-UP. To switch simply click on the gear icon in the upper-left side of the page. Then click Experience the new Drive NET PAY USING EXCEL Log in to your GoogleDrive account. If you have not switched to the New Google Drive switch over now so that what you see matches the screenshots used in these instructions. To switch

More information

Using the Tax Research Center

Using the Tax Research Center Using the Tax Research Center Always connect to the Tax Research Center through NAEA's website to receive the lowest possible price on research. Not a member? Join now members receive the absolutely lowest

More information

NET PAY USING EXCEL***

NET PAY USING EXCEL*** NET PAY USING EXCEL*** Log in to your GoogleDrive account. To make a new document, click New and then select Google Sheets The new spreadsheet that opens up should look like this: Title your spreadsheet

More information

Sheet Metal Punch ifeatures

Sheet Metal Punch ifeatures Lesson 5 Sheet Metal Punch ifeatures Overview This lesson describes punch ifeatures and their use in sheet metal parts. You use punch ifeatures to simplify the creation of common and specialty cut and

More information

Lanyon Smart Events Cloud. Meetings and Events. DocuSign Integration

Lanyon Smart Events Cloud. Meetings and Events. DocuSign Integration Lanyon Smart Events Cloud Meetings and Events DocuSign Integration User Guide Fax: 817.226.6677 http://www.lanyon.com 2017 Cvent, Inc. All rights reserved. Smart Events Cloud Page 1 TABLE OF CONTENTS 1.

More information

"It's an extreme sport, Running and Fundraising!"

It's an extreme sport, Running and Fundraising! "Never think you need to apologize for asking someone to give to a worthy objective, it is the same as you are giving an opportunity to participate in high-grade investment. The duty of giving is equal

More information

Fundraising Guide Here are some tips for you: Understand that there will be No s But Expect a Yes Who to ask? everyone

Fundraising Guide Here are some tips for you: Understand that there will be No s But Expect a Yes Who to ask? everyone Fundraising Guide An icare fundraiser is an individual who uses the philanthropy platform of the Airtel Delhi Half Marathon and raises funds of any amount in support of a CSO or cause he/ she chooses.

More information

The Key to It All: YOUR PERSONAL MONEY MAP NUMBERS

The Key to It All: YOUR PERSONAL MONEY MAP NUMBERS MODULE 2 * TO USE THE INTERACTIVE FIELDS IN THIS DOCUMENT, PLEASE DOWNLOAD AND OPEN WITH ADOBE READER The Key to It All: YOUR PERSONAL MONEY MAP NUMBERS Hi and welcome to module 2! You are about to begin

More information

Amazing Birthday Cards. Digital Lesson.com

Amazing Birthday Cards. Digital Lesson.com 1 3 5 7 9 1 7 1 1 1 9 1 3 1 5 2 1 2 3 2 5 2 7 2 9 3 1 Amazing Birthday Cards 1 6 1 7 1 8 1 9 2 0 21 22 23 2 4 2 5 2 6 2 7 28 29 30 31 Amazing Birthday Cards Amazing Birthday Cards Birthday Cards Number

More information

PAC Listing Inventory

PAC Listing Inventory PAC Listing Inventory Welcome to how to list your product on Amazon for FBA, from the Proven Amazon Course. There are two ways to add product on Amazon. One is by adding the product individually, the other

More information

Frequently Asked Questions

Frequently Asked Questions Frequently Asked Questions 1. How do I create my fundraising page? a. To create a page, you must first visit www.arizonaschildren.org/gators and click Create or join a class team link. Once you select

More information

Registering for Corban Accelerated Online

Registering for Corban Accelerated Online Registering for Corban Accelerated Online These are the steps you are about to complete: Login to SIS Search for your course(s) Select the course(s) Add to your schedule Pay for your course(s)* You re

More information

NIKKEI-JIN VISA (JAPANESE DESCENDANT)

NIKKEI-JIN VISA (JAPANESE DESCENDANT) NIKKEI-JIN VISA (JAPANESE DESCENDANT) A. WHO MAY APPLY FOR THIS TYPE OF VISA? Children of Japanese Nationals born on or before the end of World War II (referred to as the 2nd Generation), the 2nd Generation's

More information

ADULT STILL EXHIBITS DEPARTMENT

ADULT STILL EXHIBITS DEPARTMENT ADULT STILL EXHIBITS DEPARTMENT Rules: Eligibility: Open to California residents, ages 19 or older. Judging: Unless otherwise noted, all divisions in the Adult Still Exhibits Department will be judged

More information

Exploring Triangles. Exploring Triangles. Overview. Concepts Understanding area of triangles Relationships of lengths of midsegments

Exploring Triangles. Exploring Triangles. Overview. Concepts Understanding area of triangles Relationships of lengths of midsegments Exploring Triangles Concepts Understanding area of triangles Relationships of lengths of midsegments of triangles Justifying parallel lines Materials TI-Nspire TI N-spire document Exploring Triangles Overview

More information

PHATE Population Health Assessment Engine

PHATE Population Health Assessment Engine PHATE Population Health Assessment Engine PHATE is a population health tool that provides clinicians with a fuller understanding of their patient population in the context of their community. When used

More information

Excel 2003: Discos. 1. Open Excel. 2. Create Choose a new worksheet and save the file to your area calling it: Disco.xls

Excel 2003: Discos. 1. Open Excel. 2. Create Choose a new worksheet and save the file to your area calling it: Disco.xls Excel 2003: Discos 1. Open Excel 2. Create Choose a new worksheet and save the file to your area calling it: Disco.xls 3. Enter the following data into your spreadsheet: 4. Make the headings bold. Centre

More information

Learn what to do with results of autosomal DNA testing from AncestryDNA. Tools: AncestryDNA results; ancestry.com, gedmatch.com and familytreedna.

Learn what to do with results of autosomal DNA testing from AncestryDNA. Tools: AncestryDNA results; ancestry.com, gedmatch.com and familytreedna. First Look : AncestryDNA When You First Get Your AncestryDNA Results Objective: Learn what to do with results of autosomal DNA testing from AncestryDNA. Tools: AncestryDNA results; ancestry.com, gedmatch.com

More information

How does Blogging work?

How does Blogging work? How does Blogging work? Class Blogmeister For Teachers This is the login screen of Class BlogMeister You can find this site at: www.classblogmeister.com You will login with your Name and Password on this

More information

PUZZLE EFFECTS 3D User guide PUZZLE EFFECTS 3D. Photoshop actions. For PS CC and CS6 Extended. User Guide

PUZZLE EFFECTS 3D User guide PUZZLE EFFECTS 3D. Photoshop actions. For PS CC and CS6 Extended. User Guide PUZZLE EFFECTS 3D Photoshop actions For PS CC and CS6 Extended User Guide CONTENTS 1. THE BASICS... 1 1.1. About the actions... 1 1.2. How the actions are organized... 1 1.3. The Classic effects (examples)...

More information

Reviewing the Person Information

Reviewing the Person Information Goal 2.1 - The Person Summary Card 1. While moving around on your different Tree views, and then clicking on a name, you will see a "Person Summary Card" popup. 2. This card contains all the basic information

More information

July 12, so it includes. below. 4. Import File). You. will need to. Page 1

July 12, so it includes. below. 4. Import File). You. will need to. Page 1 July 12, 2012 How to trim the database you send to SGGEE using Legacy genealogy software so it includes only the Germans in your database 1. Print your pedigree chart from your existing genealogy program.

More information

ESP 171 Urban and Regional Planning. Demographic Report. Due Tuesday, 5/10 at noon

ESP 171 Urban and Regional Planning. Demographic Report. Due Tuesday, 5/10 at noon ESP 171 Urban and Regional Planning Demographic Report Due Tuesday, 5/10 at noon Purpose The starting point for planning is an assessment of current conditions the answer to the question where are we now.

More information

< The Family Demographics table contains the family demographic data, including home address and phone number

< The Family Demographics table contains the family demographic data, including home address and phone number The Church Executive Family Demographics Introduction Index Introduction... 1 Definitions... 2 Drop-down Lists... 3 User-defined fields... 4 Procedure... 5 Fields... 6 Family Members... 9 The Family Demographics

More information

Unit 15: Using Symbols and Attributes

Unit 15: Using Symbols and Attributes Unit 15: Using Symbols and Attributes Overview Many electronics drawings use the same geometry over and over. The resistor symbol, commonly found on printed circuit board drawings, is one example. AutoCAD

More information

ECE2049: Foundations of Embedded Systems Lab Exercise #1 C Term 2018 Implementing a Black Jack game

ECE2049: Foundations of Embedded Systems Lab Exercise #1 C Term 2018 Implementing a Black Jack game ECE2049: Foundations of Embedded Systems Lab Exercise #1 C Term 2018 Implementing a Black Jack game Card games were some of the very first applications implemented for personal computers. Even today, most

More information

Building a Personal Portfolio in Blackboard UK SLIS

Building a Personal Portfolio in Blackboard UK SLIS Building a Personal Portfolio in Blackboard Creating a New Personal Portfolio UK SLIS 1. Enter the Blackboard Course, and select Portfolios Homepage in the Course Menu. 2. In the Portfolios page, you will

More information

Applicable to onwards Producing the School Census Spring 2018 Return. English Secondary and Middle deemed Secondary Schools

Applicable to onwards Producing the School Census Spring 2018 Return. English Secondary and Middle deemed Secondary Schools Applicable to 7.178 onwards Producing the School Census Spring 2018 Return English Secondary and Middle deemed Secondary Schools C Contents 01 Introduction... 1 Overview... 1 How has the School Census

More information

Created by Emily Crews, Graduate Assistant for. VSU Archives and Special Collections, Spring 2012

Created by Emily Crews, Graduate Assistant for. VSU Archives and Special Collections, Spring 2012 S T U D E N T V O L U N T E E R P R O J E C T Created by Emily Crews, Graduate Assistant for VSU Archives and Special Collections, Spring 2012 L E T S G E T S T A R T E D! Choose a project: Valdosta Daily

More information

Census Taker User Guide

Census Taker User Guide Census Taker User Guide Now that you have downloaded and installed Census Taker 1.1.1 to your computer from http://www.forthecousins.com/censustaker, here is a look at how to use it. Before you start,

More information

EBUScore Pairs Manual Notes to accompany course Robin Barker October 2017 Version 0.4 For EBUScore Pairs v1.1.3+

EBUScore Pairs Manual Notes to accompany course Robin Barker October 2017 Version 0.4 For EBUScore Pairs v1.1.3+ EBUScore Pairs Manual Notes to accompany course Robin Barker October 2017 Version 0.4 For EBUScore Pairs v1.1.3+ 1. Getting started 2. Pairs events with travellers 3. Pairs events with Bridgemates 4. Pairs

More information

Table of Contents. Graduate and Postdoctoral Studies Fellowship Awards Database GPS-FAD 2012

Table of Contents. Graduate and Postdoctoral Studies Fellowship Awards Database GPS-FAD 2012 Table of Contents Introduction... 2 Where to find GPS-FAD and how to access it:... 2 Log in... 3 Step 1: Enter Departmental Contact Information... 4 Step 2: Choose a competition... 5 Step 3: Add an applicant...

More information

Creating Interim & Final Invoices - Basic Steps

Creating Interim & Final Invoices - Basic Steps Creating Invoices in your fp. system is a straightforward and flexible. Please follow the steps in this article, to learn the basics of building interim or final invoices. Refer to other articles to learn

More information

Unemployment Insurance. Online Help Guide. Table of Contents. What you need to get started Register for myalaska 2

Unemployment Insurance. Online Help Guide. Table of Contents. What you need to get started Register for myalaska 2 Alaska Unemployment Insurance Online Help Guide Table of Contents What you need to get started... 1 Register for myalaska 2 New Claim information... 3-11 Direct Deposit 12 Filing for Weekly Benefits. 13-19

More information

Learn Where to Find Records. Habit # 34

Learn Where to Find Records. Habit # 34 Learn Where to Find Records Habit # 34 Where do you find family history clues, artifacts and resources Where do you search? So where do you begin your search? Where do you search? Family history clues

More information

Finding Ancestors Using the Family History Research Wiki

Finding Ancestors Using the Family History Research Wiki Finding Ancestors Using the Family History Research Wiki The Family History Research Wiki is an extremely valuable tool we can use to learn how to find information on our ancestors. It offers information

More information

Unit 15: Using Symbols and Attributes

Unit 15: Using Symbols and Attributes Unit 15: Using Symbols and Attributes Overview Many mechanical drawings use the same geometry over and over. The SI symbol, commonly found on Metric drawings, is one example. AutoCAD allows you create

More information

Applica. for: Reports

Applica. for: Reports CENTRAL SUSQU UEHANNA INTERMEDIATE UNIT Applica tion: Census Step-by-step Instructions Census Setup, Processes, and for: Reports 2012 Central Susquehanna Intermediate Unit, USA Table of Contents Introduction...

More information

Excel Lesson 6 page 1 Jan 18

Excel Lesson 6 page 1 Jan 18 Excel Lesson 6 page 1 Jan 18 Lesson 6 (attached is Lesson6 Worksheets.xlsx) Monday Jan 18 due by Jan 31 We begin today's lesson with using an Excel sheet with the game of Tic-Tac-Toe. This simple game

More information

OverDrive on the Kindle Fire (For the Kindle Fire Only)

OverDrive on the Kindle Fire (For the Kindle Fire Only) OverDrive on the Kindle Fire (For the Kindle Fire Only) Downloading the App Go to the Kindle Fire s Apps tab and click on store (located at the right of the screen). Click the magnifying glass in the upper

More information

MULTIPLE ORGANISATION ( MULTI ORG )

MULTIPLE ORGANISATION ( MULTI ORG ) MULTIPLE ORGANISATION ( MULTI ORG ) Oracle Financials R12 www.erpstuff.com INDEX MULTI ORGANISATION Introduction Benefits Multi Org Structure in Release 11 and Release 12 Release 11 Versus Release 12 Important

More information

WHAT TO DO WHEN A CATHOLIC DIES

WHAT TO DO WHEN A CATHOLIC DIES (Revised on 6.8.2012) WHAT TO DO WHEN A CATHOLIC DIES 1. Inform promptly the Parish Priest of the deceased for arrangement of bereavement service, i.e. funeral service and burial service. 2. Please note

More information

6. Multivariate EDA. ACE 492 SA - Spatial Analysis Fall 2003

6. Multivariate EDA. ACE 492 SA - Spatial Analysis Fall 2003 1 Objectives 6. Multivariate EDA ACE 492 SA - Spatial Analysis Fall 2003 c 2003 by Luc Anselin, All Rights Reserved This lab covers some basic approaches to carry out EDA with a focus on discovering multivariate

More information

Six Tips to Begin Your Own Family History

Six Tips to Begin Your Own Family History S. C. Computer / Genealogy Class SIG Thursday, September 08, 2016, 10:00 a.m. Karen Ristic Six Tips to Begin Your Own Family History Some basic ideas in starting to research your family history Six Tips

More information

VIDEO TRANSCRIPT. to start my journey here at Accenture! Hi, I m Jay! Just like you, I can t wait to start a new career adventure at Accenture.

VIDEO TRANSCRIPT. to start my journey here at Accenture! Hi, I m Jay! Just like you, I can t wait to start a new career adventure at Accenture. VIDEO TRANSCRIPT Hi, I m Jay! Just like you, I can t wait to start a new career adventure at Accenture. But before you and I can officially start as Accenture employees, we need to complete our preemployment

More information

Excel Tool: Plots of Data Sets

Excel Tool: Plots of Data Sets Excel Tool: Plots of Data Sets Excel makes it very easy for the scientist to visualize a data set. In this assignment, we learn how to produce various plots of data sets. Open a new Excel workbook, and

More information

Child Check In Frequently Asked Questions

Child Check In Frequently Asked Questions Child Check In Frequently Asked Questions Does Child Check In print to label printers (like Dymo)? Does Child Check In also print badges for the workers? How are the badges worn? How are the badges reused?

More information

TRINIDAD AND TOBAGO. Registration of Cause of Death

TRINIDAD AND TOBAGO. Registration of Cause of Death TRINIDAD AND TOBAGO Registration of Cause of Death Medical Cause of Death Certificate When a person dies, a medical doctor (a District Medical Officer, attending physician or even personal physician) must

More information

DakStats Web-Sync. Operation Manual. DD Rev 4 12 December 2012

DakStats Web-Sync. Operation Manual. DD Rev 4 12 December 2012 DakStats Web-Sync Operation Manual DD1670479 Rev 4 12 December 2012 201 Daktronics Drive PO Box 5128 Brookings, SD 57006-5128 Tel: 1-800-DAKTRONICS (1-800-325-8766) Fax: 605-697-4746 www.daktronics.com

More information

The Guide for Churches

The Guide for Churches The 2017 Guide for Churches WHAT IS #GIVINGTUESDAY? #GivingTuesday, created in 2012, was the brainchild of New York s 92 nd Street Y and the United Nations Foundation. This holiday serves to create a global

More information

How to complete the Tier 4 (General) Student visa application online

How to complete the Tier 4 (General) Student visa application online How to complete the Tier 4 (General) Student visa application online Have you attended a Preparing your Tier 4 visa application presentation hosted each month by the International Support Team? It explains

More information

JACKSON COUNTY PIONEER CERTIFICATE PROJECT

JACKSON COUNTY PIONEER CERTIFICATE PROJECT JACKSON COUNTY PIONEER CERTIFICATE PROJECT The date of 1 August 1832, is recognized as the organization of Jackson County (it was approved on 26 June 1832, but not effective until 1 August). Therefore,

More information

Starting Family Tree: Navigating, adding, standardizing, printing

Starting Family Tree: Navigating, adding, standardizing, printing Starting Family Tree: Navigating, adding, standardizing, printing The FamilySearch logo on the upper left is a functioning icon. Clicking on this takes you back to the home page for the website. The website

More information

PREDICTOR INDICATOR FOREX LIBRA CODE

PREDICTOR INDICATOR FOREX LIBRA CODE PREDICTOR INDICATOR FOREX LIBRA CODE This short manual aims to explain how to use and apply the Predictor Indicator which is part of the Forex Libra Code software. The Predictor Indicator is available

More information