Reporting for Fundraising

Size: px
Start display at page:

Download "Reporting for Fundraising"

Transcription

1 Strategies for Supporting Fundraising Reporting for Fundraising Functions The Value of User Defined Functions in Your Data Warehouse. SupportingAdvancement.Com SupportingAdvancement.Com. All rights reserved. Permission to use this information granted, provided that the SupportingAdvancement.Com copyright notice and permission appears in all copies and use of information is for informational and non-commercial or personal use only and that no modification of the information is made.

2 What s On! Functions... 3 Creating Pyramids... 3 Date Descriptions... 6 Not So Obvious... 7 Summary... 9 SupportingAdvancement.Com 2

3 Functions Functions provide a mechanism for extending the functionality of a database. Examples of system functions already provided by your database vendor typically include functions such as SUM, AVG and others. When building out your data warehouse you should investigate the use of user defined functions as a way to leverage your programming for repetitive tasks. For example: many reports and analyses split amounts, counts and similar information into different levels. These are often known as campaign payments giving pyramids, donor pyramids and similar. A function that takes an amount and returns a pyramid description can be used for many purposes: pledge reports sorted by outstanding amount, proposal ask amounts within ask level, and lifetime giving totals are just a few examples. Have a look at the following sample code and usage. Note: examples are all based on SQL Server and other databases will have different syntax. The more important idea is to think about where you can be creative and create your own functions that will make you and your programmers more effective. Note that we re not considering efficiency of code in the examples. There may be other ways to program that would allow the functions to run a little bit faster. However, most of our databases are small enough that differences in run times are more than offset by programming efficiency. Creating Pyramids The pyramid function receives an amount and initializes the description as unknown, checks the amount within amount ranges and returns the description. The first two characters are used to sort the description from highest range to lowest range. (XX Pyramid Description) The advantage of having the sort characters - you don't have to think about how these will need to sort in any subsequent program. For reporting purposes you can use these descriptions to sort the report, but for display purposes you can use a SUBSTRING starting in position X to correctly display these fields for consumption by end users. You could add the correct description fields to your tables as additional columns using a similar function. In this example and the ones following, sort characters are included the organization is currently going through a report prototyping exercise and the sort characters are currently being left in so the user community can explicitly see the sort order in prototype reports. For information used for internal purposes, these characters can often be left in. It saves having a number of extra columns in tables that make it harder for users to use ad hoc reporting tools. For example, one column would be named as pyramid_sort and could be just 2 characters, 01, 02, 03 The next column would be pyramid_desc and would be SupportingAdvancement.Com 3

4 The pyramid description can be used additionally for counts such as distinct donors or number of gifts. In some cases, count levels might need to be changed and a different function created. A similar pyramid description could be used for groups of age demographics or elements that you want to group within ranges of amounts. Usage of the pyramid function in a SQL script is as follows: SupportingAdvancement.Com 4

5 In this case we are selecting from the vendor supplied gift table and using the function to return the level of the gift based on our organization s definitions of giving levels. This can be illustrated in the following report which is a standard summary of giving by program within gift ranges. Here's another example using the same pyramid function for counts. SupportingAdvancement.Com 5

6 Date Descriptions Another function is one that takes a date and formats the description for fiscal or calendar years so the descriptions can be used for grouping, sorting and dynamic report headers. This function receives a datetime value and returns a description based on the fiscal quarter the month falls into. It utilizes the same concepts as the pyramid function in that we are sorting using the first two characters so that we don't have to do this in any subsequent reports. Functions like these have the advantage - in that if we change the way we need to describe a quarter, we only have to do it in this function and any reporting that utilizes these descriptions will change when the function is changed. We only have to maintain code in one place. Here's how this and similar fiscal date description functions month would be called in a SQL script: This is part of the script that creates the gift table and we re using the gift received date to create all the descriptions that are going to be used in our reporting. SupportingAdvancement.Com 6

7 Side note the date_recd_char field is created as YYYYMMDD and this will be used on reports instead of the date time field. This saves having to convert this field down the road and reports for display purposes. For this particular organization the character date format is how dates will be displayed on reports. You could also set this standard date format in other ways depending on what your reporting standards are. Example of a report using the fiscal date descriptions from the gift table: Other date functions could be used for calendar date descriptions in the same fashion as fiscal year if your fiscal and calendar years are different. Other uses for these date functions could be in tables such as proposals where we might want to look at proposals within specific date ranges within a fiscal year. There are likely many more creative examples where you could utilize these types of functions in your organizations. Not So Obvious The following example is one that is not so obvious and requires a different approach to utilizing a function for a specific business need. Another common task in reporting is to split items such as gift amounts into fiscal columns based on date ranges. The following function allows us to have the logic for what constitutes a fiscal SupportingAdvancement.Com 7

8 year date range encapsulated within a function. When we change this at our year end - all of our reports and columns will reflect the new fiscal year. The function receives a character date YYYYMMDD and then if the date is within the date range the function returns a 1. Usage in a script: This is using the gift date and there are number of similar functions that split the gift split amount into the correct fiscal buckets. If we send the character date to the function, and it falls within the range, we multiply the gift amount by the value returned, in this case a 1. The columns will be populated with the correct gift split amount. (Note that we re converting the date to a character date within the script before the date is sent to the function. This should be more efficient that doing multiple date conversions SupportingAdvancement.Com 8

9 within the function.) These functions have the additional advantage of utilizing a table that stores all of our fiscal dates. When we select cfy_beg FROM dw_fiscal_dates in the function, we are selecting a date in the format YYYYMMDD. At the beginning of the year we change the current fiscal year beginning date to the new fiscal year start date and all of our columns will be automatically updated. We don t have to go into multiple reports and scripts and change all of the date ranges. Summary All of these examples may not utilize the most efficient programming code, but your technical staff will be able to write these and other functions more efficiently. The lesson is really about leveraging your time. Functions allow you to reduce the amount of time you might otherwise spend writing blocks of SQL code that end up getting repeated in multiple programs. You can use similar strategies for stored procedures depending on what you're trying to accomplish and how your particular database engine works. The key in all of this is to evaluate your code and look for repetition of common tasks. If you are doing something in three or four scripts think about how a function or stored procedure might be a better way to manage this over the longer term, and additionally, how you can use the same functions for multiple purposes. Other examples? Don t forget to check what your vendor has already included - there may be a number of functions that you can use out of the box. At a minimum it s a good starting point to review how the vendor supplied functions are written to give you ideas and strategies on how to write your own. Brian Dowling Principal and Founder SupportingAdvancement.Com SupportingAdvancement.Com 9

10 Brian Dowling has worked at a number of non-profit and higher education organizations in both the United States and Canada where he gained understanding, knowledge and perspectives of managing in small, medium and large shops. This experience included multiple system conversions, web site development, budgetary and financial responsibilities, operations management and more. He has consulted in the United States, Canada and Australia, written numerous articles and presents regularly at conferences. He invests his spare time in SupportingAdvancement.Com and is an amateur musician. SupportingAdvancement.Com is a high traffic web property with the mission of providing free resources of interest to those working in the fundraising profession. Efficiency is crossing the bridge quickly. Effectiveness is deciding if you need to cross at all. Hopefully, you'll find some resources and ideas here to help you be more efficient and effective. Under the reporting and systems pages you ll find additional information on reporting, data warehouses, business intelligence and related links. SupportingAdvancement.Com 10

Seven Interesting Data Warehouse Ideas

Seven Interesting Data Warehouse Ideas Seven Interesting Data Warehouse Ideas Learning Objectives Take a detailed dive into some interesting ideas and concepts that can enhance your data warehouse or reporting database. Review some examples

More information

Fundraising Data Warehousing

Fundraising Data Warehousing Strategies for Supporting Fundraising Fundraising Data Warehousing Handouts BC Blackbaud User Group Meeting SupportingAdvancement.Com SupportingFundraising.Com All rights reserved. Permission granted to

More information

Integrated Multichannel Marketing & Fundraising Best Practices Matthew Mielcarek Director, Convio Strategy Practice

Integrated Multichannel Marketing & Fundraising Best Practices Matthew Mielcarek Director, Convio Strategy Practice Integrated Multichannel Marketing & Fundraising Best Practices Matthew Mielcarek Director, Convio Strategy Practice 2011 Convio, Inc. Page 1 Overview The art and science of fundraising is changing 2 2011

More information

07/20/2016 Blackbaud Altru 4.91 Reports US 2016 Blackbaud, Inc. This publication, or any part thereof, may not be reproduced or transmitted in any

07/20/2016 Blackbaud Altru 4.91 Reports US 2016 Blackbaud, Inc. This publication, or any part thereof, may not be reproduced or transmitted in any Reports Guide 07/20/2016 Blackbaud Altru 4.91 Reports US 2016 Blackbaud, Inc. This publication, or any part thereof, may not be reproduced or transmitted in any form or by any means, electronic, or mechanical,

More information

Common Ground. The CRM solution for nonprofits. Presented by: Tompkins Spann Convio, Inc. Page 1

Common Ground. The CRM solution for nonprofits. Presented by: Tompkins Spann Convio, Inc. Page 1 Common Ground The CRM solution for nonprofits 2009 Convio, Inc. Page 1 Presented by: Tompkins Spann About Common Ground More than a donor database! A CRM solution with donor and relationship management

More information

7/29/2014 PTP Fundraising Training July 31-August 1 Page 1 of 91

7/29/2014 PTP Fundraising Training July 31-August 1 Page 1 of 91 7/29/2014 PTP Fundraising Training July 31-August 1 Page 1 of 91 Progressive Technology Project Page 1 of 1 7/27/2014 7/29/2014 PTP Fundraising Training July 31-August 1 Page 2 of 91 Number of individual

More information

Integrated Multichannel Marketing and Fundraising Best Practices Convio, Inc. Page 1

Integrated Multichannel Marketing and Fundraising Best Practices Convio, Inc. Page 1 Integrated Multichannel Marketing and Fundraising Best Practices 2011 Convio, Inc. Page 1 Total Annual Giving Generational Giving Study $1,200. $1,100. $1,000. $900. $800. $700. $600. $500. $400. $300.

More information

Working with the Business to Build Effective Dimensional Models

Working with the Business to Build Effective Dimensional Models Working with the Business to Build Effective Dimensional Models Laura L. Reeves Co-Founder & Principal April, 2009 Copyright 2009 StarSoft Solutions, Inc. Slide 1 Instructor Information: Laura L. Reeves,

More information

Analyzing Google Analytics

Analyzing Google Analytics May 2018 Analyzing Google Analytics 1. Primary & Secondary Dimensions 2. Bounce Rate & Other Data Definitions 3. Events 4. Goals 5. Help & Training Difference Between Dimensions & Metrics Primary Dimensions

More information

Plan Smart: Don t Leave Your End of Year Campaigns to Chance Convio, Inc. Page 1

Plan Smart: Don t Leave Your End of Year Campaigns to Chance Convio, Inc. Page 1 Plan Smart: Don t Leave Your End of Year Campaigns to Chance 2009 Convio, Inc. Page 1 July 2009 Q&A You can ask a question at any time using the Q&A chat box at the top of your screen. All questions will

More information

Getting to Know Your Raiser s Edge Data

Getting to Know Your Raiser s Edge Data Getting to Know Your Raiser s Edge Data This document guides you through a series of simple but informative downloads from your Raiser s Edge system. The tables detailed in these reports form the heart

More information

Successful Internet Strategies in Public Broadcasting Stations

Successful Internet Strategies in Public Broadcasting Stations Successful Internet Strategies in Public Broadcasting Stations Vinay Bhagat, Founder & Chief Strategy Officer, Convio Teri Lamitie, Director of Online Marketing, WGBH Educational Foundation Michal Heiplik,

More information

CRM Upload Guideline

CRM Upload Guideline Topics Covered 1.Simple, Fast Constituent Import Contents = Go to Topic 2.Goals 3.Preparing to Upload 4.General Rules 5.Mapping Your Data to the DonorCommunity File Requirements 6.Mapping Constituent Data

More information

FastStats Integration

FastStats Integration Guide Improving results together 1 Contents Introduction... 2 How a campaign is conducted... 3-5 Configuring the integration with PureResponse... 4-17 Using Cascade with the PureResponse platform... 17-10

More information

An Integrated Solution for Nonprofits

An Integrated Solution for Nonprofits An Integrated Solution for Nonprofits 100411 2011 Blackbaud, Inc. This publication, or any part thereof, may not be reproduced or transmitted in any form or by any means, electronic, or mechanical, including

More information

Version 6.0. User and Reference Manual

Version 6.0. User and Reference Manual Version 6.0 User and Reference Manual FundVision 6.0 All rights reserved. No parts of this work may be reproduced in any form or by any means - graphic, electronic, or mechanical, including photocopying,

More information

Traffic violations revisited

Traffic violations revisited Traffic violations revisited November 9, 2017 In this lab, you will once again extract data about traffic violations from a CSV file, but this time you will use SQLite. First, download the following files

More information

Intellicus Enterprise Reporting and BI Platform

Intellicus Enterprise Reporting and BI Platform Designing Adhoc Reports Intellicus Enterprise Reporting and BI Platform Intellicus Technologies info@intellicus.com www.intellicus.com Designing Adhoc Reports i Copyright 2012 Intellicus Technologies This

More information

Common Ground. How Integrating with Common Ground Can Benefit Your Organization. Presented by: Tom Krackeler and Rachel English

Common Ground. How Integrating with Common Ground Can Benefit Your Organization. Presented by: Tom Krackeler and Rachel English Common Ground How Integrating with Common Ground Can Benefit Your Organization 2009 Convio, Inc. Page 1 Presented by: Tom Krackeler and Rachel English About Common Ground More than a donor database! A

More information

LOGIN & EXPLORE LOGIN & EXPLORE THE PARTICIPANT CENTRE

LOGIN & EXPLORE LOGIN & EXPLORE THE PARTICIPANT CENTRE PARTICIPANT GUIDE WHAT DO YOU WANT TO DO? Login... 2 Explore the Participant Centre... 2 Personalize your pages... 3 Record & pay offline donations... 5 Get help... 8 LOGIN & EXPLORE LOGIN & EXPLORE THE

More information

Your Telecom Lead Generation Campaign Checklist

Your Telecom Lead Generation Campaign Checklist Your Telecom Lead Generation Campaign Checklist No one likes investing time and money into a lead generation campaign that doesn't drive results for your business. Use this checklist to create campaigns

More information

Setting Up a Sustainer Program. Appendix: Excerpts from Online Help: Benefit Auto Renewal (v. 5.x and 6.x)

Setting Up a Sustainer Program. Appendix: Excerpts from Online Help: Benefit Auto Renewal (v. 5.x and 6.x) Setting Up a Sustainer Program Appendix: Excerpts from Online Help: Benefit Auto Renewal (v. 5.x and 6.x) Table of Contents HOW A SUSTAINING PROGRAM WORKS... 1 SUMMARY OF SUSTAINER FUNCTIONALITY THAT RELIES

More information

LATE COST TRANSFER EXCEPTION REQUEST WEB FORM GUIDE

LATE COST TRANSFER EXCEPTION REQUEST WEB FORM GUIDE LATE COST TRANSFER EXCEPTION REQUEST WEB FORM GUIDE The Office of Research Administration (ORA) has updated their Late Cost Transfer Exception Request Form to a web form. This web form is accessible under

More information

New Perspectives for Online Fundraising and Marketing

New Perspectives for Online Fundraising and Marketing New Perspectives for Online Fundraising and Marketing Beyond Web sites and donation forms 1 Agenda Your Online Opportunity It s Bigger than You Think Planning Strategically Active email acquisition Relationship

More information

Binary, Hexadecimal and Octal number system

Binary, Hexadecimal and Octal number system Binary, Hexadecimal and Octal number system Binary, hexadecimal, and octal refer to different number systems. The one that we typically use is called decimal. These number systems refer to the number of

More information

Snowman Software Forms Wizard Webinar

Snowman Software Forms Wizard Webinar Snowman Software Forms Wizard Webinar DaySchool Version 8.20 MSWord 2013 is used in our exercise. If you are on a Mac or are using Word 2003 or 2007, your steps may be slightly different from those in

More information

InterChange. Introduction to Query Manual. The Salvation Army Southern Territorial Headquarters 2015 InterChange University

InterChange. Introduction to Query Manual. The Salvation Army Southern Territorial Headquarters 2015 InterChange University InterChange Introduction to Query Manual The Salvation Army Southern Territorial Headquarters 2015 InterChange University Table of Contents 4: Introduction to Query... 3 A Query Overview... 4 The Information

More information

Aggregating Knowledge in a Data Warehouse and Multidimensional Analysis

Aggregating Knowledge in a Data Warehouse and Multidimensional Analysis Aggregating Knowledge in a Data Warehouse and Multidimensional Analysis Rafal Lukawiecki Strategic Consultant, Project Botticelli Ltd rafal@projectbotticelli.com Objectives Explain the basics of: 1. Data

More information

Make a complete inventory of all of the publications/correspondence [your organization] sends out electronic and print. Examples might include:

Make a complete inventory of all of the publications/correspondence [your organization] sends out electronic and print. Examples might include: The Marketing Plan 1) UTILIZING YOUR OWN EXISTING RESOURCES Make a complete inventory of all of the publications/correspondence [your organization] sends out electronic and print. Examples might include:

More information

Growing your Donors by Growing your List

Growing your Donors by Growing your List + + Overview of Webinar Growing your Donors by Growing your List Webinar June 14, 2012 A Growing Your Donors monthly webinar Ashley Hansen, Care2 ashleyh@care2team.com 202-785-7304 Director of Nonprofit

More information

The Procrastinator's Guide to Year-End Giving - Part I

The Procrastinator's Guide to Year-End Giving - Part I The Procrastinator's Guide to Year-End Giving - Part I By Donna Ann Harris, CMSM, Heritage Consulting Inc. From Main Street Story of the Week December 4, 2013 Procrastinators, unite! Main Street programs

More information

DIGITAL MARKETING TOOLS AND FUNDRAISING. Nancy Benavente. Philanthropy

DIGITAL MARKETING TOOLS AND FUNDRAISING. Nancy Benavente. Philanthropy DIGITAL MARKETING TOOLS AND FUNDRAISING MAY 2013 Nancy Benavente Philanthropy 2 Philanthropy is all about making a positive difference in the world by devoting your resources and your time to causes you

More information

CHAPTER 2: FINANCIAL REPORTING

CHAPTER 2: FINANCIAL REPORTING Chapter 2: Financial Reporting CHAPTER 2: FINANCIAL REPORTING Objectives The objectives are: Describe filtering and analysis windows related to the Chart of Accounts. Provide a demonstration of setting

More information

An Integrated Solution for Nonprofits

An Integrated Solution for Nonprofits An Integrated Solution for Nonprofits 072104 2004 Blackbaud, Inc. This publication, or any part thereof, may not be reproduced or transmitted in any form or by any means, electronic, or mechanical, including

More information

Background of the North America Top Technology Initiatives Survey

Background of the North America Top Technology Initiatives Survey Kevin M. Martin, CPA.CITP, MCSE, MCP+I The 2013 North America* Top Technology Initiatives Survey *AICPA and CPA Canada The views expressed by the presenters do not necessarily represent the views, positions,

More information

Creating an online strategy to thrive in tough times. Eric Rardin Director of Nonprofit Services Care2.com

Creating an online strategy to thrive in tough times. Eric Rardin Director of Nonprofit Services Care2.com Creating an online strategy to thrive in tough times Eric Rardin Director of Nonprofit Services Care2.com Agenda Setting the stage Strategy review Discussion of current tactics Tools to measure success

More information

GROW YOUR BUSINESS WITH AN ALL-IN-ONE REAL ESTATE PLATFORM

GROW YOUR BUSINESS WITH AN ALL-IN-ONE REAL ESTATE PLATFORM GROW YOUR BUSINESS WITH AN ALL-IN-ONE REAL ESTATE PLATFORM ZipperAgent TABLE OF CONTENTS 1. Introduction: How valuable is your CRM? 2. Online Lead Capture: Online lead capture builds your business 3. Timely

More information

Designing a Database -- Understanding Relational Design

Designing a Database -- Understanding Relational Design Designing a Database -- Understanding Relational Design Contents Overview The Database Design Process Steps in Designing a Database Common Design Problems Determining the Purpose Determining the Tables

More information

GL Account Documents (JV)

GL Account Documents (JV) GL Account Documents (JV) FI_GU_310 General Ledger Account Documents FI_GU_310 v5 1 General Ledger Account Documents FI_GU_310 v5 1 Course Content Introduction Unit 1 Parking General Ledger Documents (JV

More information

InterChange. Revenue 100 Manual. The Salvation Army Southern Territorial Headquarters 2018 InterChange University

InterChange. Revenue 100 Manual. The Salvation Army Southern Territorial Headquarters 2018 InterChange University InterChange Revenue 100 Manual The Salvation Army Southern Territorial Headquarters 2018 InterChange University Table of Contents 5: Revenue 100-Batching Revenue... 3 The Purpose of Batching... 4 An Overview

More information

For additional resources, visit our online Support Center or contact our support team at

For additional resources, visit our online Support Center or contact our support team at Welcome to NGP This document is designed as a basic introductory guide to the NGP online database. By the end of this document, you should be able to navigate the basic functions within NGP as well as

More information

Lesson 2 Analysing Your Online Presence

Lesson 2 Analysing Your Online Presence Lesson 2 Analysing Your Online Presence On completion of this lesson you should be able to: Be aware of some website diagnostic tools available on the internet Understand how to perform various diagnostic

More information

Quick Campaign Optimization Tips

Quick Campaign Optimization Tips Quick Campaign Optimization Tips 1. Our minimum CPM is as low as $0.1 so I suggest you start with something around $1.5 which you can always change while the campaign is running. 2. Try to use our 'Optimization'

More information

VLOOKUP vs. SUMIFS. Battle of the Excel Heavyweights. made with

VLOOKUP vs. SUMIFS. Battle of the Excel Heavyweights. made with VLOOKUP vs. SUMIFS Battle of the Excel Heavyweights made with Table of Contents 1. What do we mean by Battle? 2. VLOOKUP: Range Lookups 3. SUMIFS: Overview 4. Multi-Column Lookup with VLOOKUP and SUMIFS

More information

Chapter 12: Social Implications of IT

Chapter 12: Social Implications of IT !" #$$ %! & The final exam will be cumulative! Please also study previous midterm reviews and exams and other material from the beginning of the course. For instance: Six Steps in the Debugging Process

More information

(I m not printing out these notes! Take your own.)

(I m not printing out these notes! Take your own.) PT1420 Week 2: Software Program Design I (I m not printing out these notes! Take your own.) Today we'll be discussing designing programs: Algorithms and errors Flowcharts and pseudocode Sequence structures

More information

12 Key Steps to Successful Marketing

12 Key Steps to Successful  Marketing 12 Key Steps to Successful Email Marketing Contents Introduction 3 Set Objectives 4 Have a plan, but be flexible 4 Build a good database 5 Should I buy data? 5 Personalise 6 Nail your subject line 6 Use

More information

Windows Script Host Fundamentals

Windows Script Host Fundamentals O N E Windows Script Host Fundamentals 1 The Windows Script Host, or WSH for short, is one of the most powerful and useful parts of the Windows operating system. Strangely enough, it is also one of least

More information

Frequently Asked Questions Regarding Charitable Fundraising & The Personal Information Protection and Electronic Documents Act (PIPEDA)

Frequently Asked Questions Regarding Charitable Fundraising & The Personal Information Protection and Electronic Documents Act (PIPEDA) Frequently Asked Questions Regarding Charitable Fundraising & The Personal Information Protection and Electronic Documents Act (PIPEDA) On January 1, 2004, the federal Personal Information Protection and

More information

UTILIZE YOUR YEAR-END MOMENTUM. Kick-Start 2013 Fundraising

UTILIZE YOUR YEAR-END MOMENTUM. Kick-Start 2013 Fundraising UTILIZE YOUR YEAR-END MOMENTUM Kick-Start 2013 Fundraising Turn your year-end fundraising into sustained growth in the new year. Did you know that most organizations receive half of their annual online

More information

BOSTON USER GROUP. Workflows for Threading. kcura LLC. All rights reserved.

BOSTON USER GROUP. Workflows for  Threading. kcura LLC. All rights reserved. BOSTON USER GROUP Workflows for Email Threading Jacob Cross Overview The objective of today s session is to give you some ideas that will hopefully increase your knowledge of how email threading works

More information

VISITOR SEGMENTATION

VISITOR SEGMENTATION support@magestore.com sales@magestore.com Phone: 084.4.8585.4587 VISITOR SEGMENTATION USER GUIDE Version 1.0.0 Table of Contents 1. INTRODUCTION... 3 Create unlimited visitor segments... 3 Show targeted

More information

2012 Summary of Services

2012 Summary of Services 2012 Summary of Services About Us Our team has a passion, in everything we do, to create beautiful and functional work. We have spent a lot of time working with churches, ministries, and non-profits around

More information

2014 Friends of Scouting Prospect Management Software

2014 Friends of Scouting Prospect Management Software 2014 Friends of Scouting Prospect Management Software It has been said, the greatest gift a man can give a boy, is his willingness to share a part of his life - with him. -President Thomas S. Monson SPECIAL

More information

Mobile: measurability unlocks spending

Mobile: measurability unlocks spending Mobile: measurability unlocks spending Gabriella Bergaglio TNS Digital Practice Lead Cristina Colombo TNS Consumer Insight Director IAB Forum 2013 Milan, 3rd-4th December TNS 2013 Storyline 1 Device penetration

More information

Creative Niche Manager User's Guide Section / Module: Advertising. By JP Schoeffel - 1 -

Creative Niche Manager User's Guide Section / Module: Advertising. By JP Schoeffel - 1 - Module: Advertising By JP Schoeffel http://jpschoeffel.com http://nichesinabox.com http://creativenichemanager.com - 1 - This book and ALL content provided are for your private use only. No part of this

More information

Digital Marketing Manager, Marketing Manager, Agency Owner. Bachelors in Marketing, Advertising, Communications, or equivalent experience

Digital Marketing Manager, Marketing Manager, Agency Owner. Bachelors in Marketing, Advertising, Communications, or equivalent experience Persona name Amanda Industry, geographic or other segments B2B Roles Digital Marketing Manager, Marketing Manager, Agency Owner Reports to VP Marketing or Agency Owner Education Bachelors in Marketing,

More information

Autoresponder Secrets Page 1

Autoresponder Secrets Page 1 Autoresponder Secrets Page 1 Table of Contents Introduction... 3 Why You Need An Autoresponder... 5 Securing Your Autoresponder Marketing System... 7 Top Autoresponder Providers... 11 Moving Forward...

More information

Team Approach. System Preferences

Team Approach. System Preferences i ii Contents Using the System Preference Administration Screen...8 Setting Preferences for Screens, Reports, and Procedures...8 Setting Entry, Background, and General Preferences...9 Granting Users Access

More information

InForm Functionality Reference Manual for Sites. Version 1.0

InForm Functionality Reference Manual for Sites. Version 1.0 InForm Functionality Reference Manual for Sites Version 1.0 1-Mar-2012 2012 by Merck & Co., Inc., Whitehouse Station, New Jersey, USA All Rights Reserved No part of this book may be reproduced in any form

More information

Kuali Financial System (KFS) New User Training. Presented by: Accounting Purchasing

Kuali Financial System (KFS) New User Training. Presented by: Accounting Purchasing Kuali Financial System (KFS) New User Training Presented by: Accounting Purchasing KFS Overview Kuali is a community of universities, colleges, and commercial affiliates that have partnered to build and

More information

Keeping Up with the Joneses: Mobile Member Cards and Recurring Giving. Presented by Cari Maslow & Kara Getkin 2016 AMMC Conference April 12, 2016

Keeping Up with the Joneses: Mobile Member Cards and Recurring Giving. Presented by Cari Maslow & Kara Getkin 2016 AMMC Conference April 12, 2016 Keeping Up with the Joneses: Mobile Member Cards and Recurring Giving Presented by Cari Maslow & Kara Getkin 2016 AMMC Conference April 12, 2016 Overview Introduction How We Implemented Challenges & Unexpected

More information

CROSSView Promotional Planner Reference Guide Planner Template File

CROSSView Promotional Planner Reference Guide Planner Template File Planner Template File The template for your specific planner will be located on CROSSMARKConnect on the My Communities page. Make sure you are in the CROSSMarkConnect website. Click the MyCommunities menu

More information

Data Conversion Strategies for Yardi Voyager By: David Wolfe President - Lupine Partners

Data Conversion Strategies for Yardi Voyager By: David Wolfe President - Lupine Partners Data Conversion Strategies for Yardi Voyager By: David Wolfe President - Lupine Partners 2 Data Conversion Strategies for Yardi Voyager Is there a list of software systems that Yardi Voyager can convert

More information

GET YOUR PROFILE READY!

GET YOUR PROFILE READY! GET YOUR PROFILE READY! To be eligible for a giving day grant, your profile page MUST include the items below: 1. Your organization s logo. (Entered as the medium avatar in the profile page) 2. A description

More information

Using CiviCRM By Joseph Murray, Brian Shaughnessy READ ONLINE

Using CiviCRM By Joseph Murray, Brian Shaughnessy READ ONLINE Using CiviCRM By Joseph Murray, Brian Shaughnessy READ ONLINE CiviCRM websites spending over $500 a month on 3rd parties. Websites using CiviCRM that are estimated to be spending more than $500 a month

More information

MDM is Calling: Does Your Business Have an Answer? arrival. Here To Go. Lunch Dinner. continue. Riiinnggg. Dec. 12

MDM is Calling: Does Your Business Have an Answer? arrival. Here To Go. Lunch Dinner. continue. Riiinnggg. Dec. 12 MDM is Calling: Does Your Business Riiinnggg arrival flight itinerary PLACE ORDER Here To Go Lunch Dinner continue Dec. 12 Riiinnggg Office answer MDM is Calling: Does your Business MDM is Calling: Does

More information

11. Build your Own Data Models

11. Build your Own Data Models 11. Build your Own Data Models... 1 11.0 Welcome... 1 11.1 Introduction... 1 11.2 Opening a Pool Hall... 4 11.3 Opening a Funeral Home...23 11.4 Making a Movie...25 11.5 What have we learned?...27 11.

More information

Holiday Campaigns That Work 3 billion reasons, 5 proven tips

Holiday Campaigns That Work 3 billion reasons, 5 proven tips Holiday Campaigns That Work 3 billion reasons, 5 proven tips Patrick Hansen and Kenan Pollack Senior Interactive Consultants About Us Patrick Hansen Senior Interactive Consultant Eight years experience

More information

Introduction for Nonprofits

Introduction for Nonprofits Online Tools Introduction for Nonprofits These training materials have been prepared by Aspiration. Who is Aspiration? Aspiration helps nonprofits and foundations use software tools more effectively and

More information

County Pool Application ANDAR INSTRUCTIONS MANUAL. LINK TO ANDAR SIGN ON PAGE:

County Pool Application ANDAR INSTRUCTIONS MANUAL. LINK TO ANDAR SIGN ON PAGE: 2018-2019 County Pool Application ANDAR INSTRUCTIONS MANUAL LINK TO ANDAR SIGN ON PAGE: https://epledge.unitedwayatlanta.org/begin.jsp TABLE OF CONTENTS 1. Welcome and What is ANDAR? 2 2. Helpful tips

More information

Integrating Your Mission with Your Website

Integrating Your Mission with Your Website Integrating Your Mission with Your Website Heidi Hess, Director of Online Communications, Children s Defense Fund Jim Jacobs, Vice President, Interactive, OmniStudio 2009 Convio, Inc. Page 1 Mandy O Neill,

More information

Data Warehouses Chapter 12. Class 10: Data Warehouses 1

Data Warehouses Chapter 12. Class 10: Data Warehouses 1 Data Warehouses Chapter 12 Class 10: Data Warehouses 1 OLTP vs OLAP Operational Database: a database designed to support the day today transactions of an organization Data Warehouse: historical data is

More information

Integrated Fundraising: How to Use What You Already Know To Raise More Money

Integrated Fundraising: How to Use What You Already Know To Raise More Money Integrated Fundraising: How to Use What You Already Know To Raise More Money PRESENTED BY CATHY FINNEY, THE WILDERNESS SOCIETY TIFFANY NEILL, LAUTMAN MASKA NEILL & COMPANY 10/3/2012 Footer 1 TODAY S ROADMAP

More information

ToutApp for Salesforce: Installation and Success Guide

ToutApp for Salesforce: Installation and Success Guide ToutApp for Salesforce: Installation and Success Guide ToutApp allows enterprise sales teams to increase pipeline, drive consistency and forecast accurately from one platform. With ToutApp s robust Salesforce

More information

How Real Time Are Your Analytics?

How Real Time Are Your Analytics? How Real Time Are Your Analytics? Min Xiao Solutions Architect, VoltDB Table of Contents Your Big Data Analytics.... 1 Turning Analytics into Real Time Decisions....2 Bridging the Gap...3 How VoltDB Helps....4

More information

Breakdown of Some Common Website Components and Their Costs.

Breakdown of Some Common Website Components and Their Costs. Breakdown of Some Common Website Components and Their Costs. Breakdown of Some Common Website Components and Their Costs. The cost of a website can vary dramatically based on the specific components included.

More information

Sections in this manual

Sections in this manual 1 Sections in this manual Argus Analytics 2 The service 2 Benefits 2 Launching Argus Analytics 3 Search Interface breakdown 4 Add-in Navigation 5 Search: Free text & Facet 5 Search: Facet filter 6 Filters

More information

ShelbyNext Membership: Reports (Hands On)

ShelbyNext Membership: Reports (Hands On) ShelbyNext Membership: Reports (Hands On) (Course #M115) Presented by: Jeannetta Douglas Shelby Contract Trainer 2018 Shelby Systems, Inc. Other brand and product names are trademarks or registered trademarks

More information

Set-up a Donation Option in Facebook

Set-up a Donation Option in Facebook Set-up a Donation Option in Facebook The opportunity to turn your social networking fans into active donors and financial supporters just got easier! Since 2009, ShopTab has helped thousands of clients

More information

United Way of Greater Atlanta ANDAR Community Building Module Manual. LINK TO ANDAR SIGN ON PAGE:

United Way of Greater Atlanta ANDAR Community Building Module Manual. LINK TO ANDAR SIGN ON PAGE: United Way of Greater Atlanta ANDAR Community Building Module Manual LINK TO ANDAR SIGN ON PAGE: https://epledge.unitedwayatlanta.org/agency 1 TABLE OF CONTENTS 1. Welcome 3 2. What is Andar? 3 3. Helpful

More information

Sage Business Cloud Accounting: Settings

Sage Business Cloud Accounting: Settings Education Alliance Program Curriculum: Canada Page 1 Sage Business Cloud Accounting: Settings Page 2 Learning Objectives After completing this module, you should be able to: Understand Accounting system

More information

Swim Club Swim-A-Thon Coordinator s Guide

Swim Club Swim-A-Thon Coordinator s Guide Swim Club Swim-A-Thon Coordinator s Guide Step 1 Register to Hold a Swim-A-Thon Visit www.ontarioswimathon.ca/register-club and register your club. Ensure that you fill out all information. Read the Club

More information

M i c r o s o f t E x c e l A d v a n c e d P a r t 3-4. Microsoft Excel Advanced 3-4

M i c r o s o f t E x c e l A d v a n c e d P a r t 3-4. Microsoft Excel Advanced 3-4 Microsoft Excel 2010 Advanced 3-4 0 Absolute references There may be times when you do not want a cell reference to change when copying or filling cells. You can use an absolute reference to keep a row

More information

SCT Banner Advancement Self Service for Advancement Officers Training Workbook January 2005 Release 7.0

SCT Banner Advancement Self Service for Advancement Officers Training Workbook January 2005 Release 7.0 SCT HIGHER EDUCATION SCT Banner Advancement Self Service for Advancement Officers Training Workbook January 2005 Release 7.0 Confidential Business Information --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

More information

, has the form T i1i 2 i m. = κ i1i 2 i m. x i1. 1 xi2 2 xim m (2)

, has the form T i1i 2 i m. = κ i1i 2 i m. x i1. 1 xi2 2 xim m (2) CS61B, Fall 2002 Project #1 P. N. Hilfinger Due: Friday, 4 October 2002 at 2400 This first project involves writing a calculator program that can perform polynomial arithmetic. We ll do only a very limited

More information

How to Improve Your Campaign Conversion Rates

How to Improve Your  Campaign Conversion Rates How to Improve Your Email Campaign Conversion Rates Chris Williams Author of 7 Figure Business Models How to Exponentially Increase Conversion Rates I'm going to teach you my system for optimizing an email

More information

Fundraising for SKiP

Fundraising for SKiP Fundraising for SKiP STEP 1: CHOOSE AN EVENT Take part in an existing community event or look at the fundraising ideas on the SKiP website for inspiration. STEP 2: GET REGISTERED Register your school,

More information

F O R N E C S O N L I N E D O N O R S. An introduction to a simple audit process used to optimize the online donation experience

F O R N E C S O N L I N E D O N O R S. An introduction to a simple audit process used to optimize the online donation experience THE GIVING EXPERIENCE F O R N E C S O N L I N E D O N O R S An audit of NEC s online donation process 10/15/2012 10/31/2013 Footer 1 ABOUT THIS SESSION An introduction to a simple audit process used to

More information

A Beginner's Guide to Online Fundraising & Marketing. Nonprofit 911 Teleconference July 7, Jono Smith VP, Marketing Network for Good

A Beginner's Guide to Online Fundraising & Marketing. Nonprofit 911 Teleconference July 7, Jono Smith VP, Marketing Network for Good 1 A Beginner's Guide to Online Fundraising & Marketing Nonprofit 911 Teleconference July 7, 2009 Jono Smith VP, Marketing Network for Good 2 Key Takeaways Why online fundraising is the great equalizer

More information

Document your findings about the legacy functions that will be transformed to

Document your findings about the legacy functions that will be transformed to 1 Required slide 2 Data conversion is a misnomer. This implies a simple mapping of data fields from one system to another. In reality, transitioning from one system to another requires a much broader understanding

More information

Vieth Consulting, LLC website and membership services for associations

Vieth Consulting, LLC website and membership services for associations website and membership services for associations www.viethconsulting.com 209 S. Bridge Street Grand Ledge, MI 48837 (800) 336-3008 Fax: (800) 336-3008 ext. 110 service@viethconsulting.com Website Questionnaire

More information

Q U IC KBOOKS ST UD EN T G U IDE. Lesson 2 Setting Up

Q U IC KBOOKS ST UD EN T G U IDE. Lesson 2 Setting Up Q U IC KBOOKS ST UD EN T G U IDE Lesson 2 Setting Up TABLE OF CONTENTS Lesson Objectives... 2-2 Creating a QuickBooks Company... 2-3 Starting the EasyStep Interview... 2-4 Entering Company Information...

More information

Customizing GIFTS: Codes and Fields. Stuart M. Revness President, SMR Consulting, Inc.

Customizing GIFTS: Codes and Fields. Stuart M. Revness President, SMR Consulting, Inc. Customizing GIFTS: Codes and Fields Stuart M. Revness President, SMR Consulting, Inc. Session Description Talk about custom reporting! Did you know you can add code tables and fields to GIFTS to truly

More information

Benchmarking Your Online Programs and Strategies to Increase Results

Benchmarking Your Online Programs and Strategies to Increase Results Benchmarking Your Online Programs and Strategies to Increase Results Faith-Based Organization Webinar May 21, 2008 Matt McCabe, Principal Consultant, Convio Jim Killion, Founder & Chief estrategist, is7

More information

InterChange. Constituents 100 Manual. The Salvation Army Southern Territorial Headquarters 2018 InterChange University

InterChange. Constituents 100 Manual. The Salvation Army Southern Territorial Headquarters 2018 InterChange University InterChange Constituents 100 Manual The Salvation Army Southern Territorial Headquarters 2018 InterChange University Table of Contents 2: Constituents 100.... 3 How to Search for a Constituent... 4 Three

More information

Wireless Opportunities

Wireless Opportunities Wireless Opportunities Chris Bingley, RuffaloCODY Cell phone future Trends Smart phones Opinions Uses Mobile communication research Problem or Opportunity Old cell phone plans Privacy Phone number data

More information

Web Design Course Syllabus and Course Outline

Web Design Course Syllabus and Course Outline Web Design Course Syllabus and Course Outline COURSE OVERVIEW AND GOALS In today's world, web pages are the most common medium for sharing ideas and information. Learning to design websites is an incredibly

More information

1.264 Midterm Exam Solutions Fall, Name:

1.264 Midterm Exam Solutions Fall, Name: 1.264 Midterm Exam Solutions Fall, 2006 Name: Exam guidelines: 1. 80 minutes are allowed to complete the exam. 2. Open notes, open book. 3. No laptop computers or calculators are allowed. 4. No cell phones

More information

The State of Mobile Advertising Q2 2012

The State of Mobile Advertising Q2 2012 Q2 2012 Executive summary In our first edition of the State of Mobile Advertising report, we take an in-depth look at the monetization of mobile advertising from four perspectives within the ad delivery

More information