Challenges

πŸ“˜

Note

This is an iMIS Crowdfunding edition feature.

Challenge Mode is an optionalΒ TemplateΒ mode in Donate Now - Premium that allows a Donate Now - Premium staff user to set a predefined goal for a particular template. The template will display a progress tracker at the top of the form indicating the overall progress towards the goal.

The goal can be one of two distinct types:Β amount raised in dollars, orΒ number of unique donors.

Activating Challenge mode

Do the following to activate Challenge mode:

  1. Edit a template and under theΒ GeneralΒ tab
  2. Change theΒ Template Mode toΒ Challenge.
  3. Select one of the goal types via the radio buttons, and enter the target goal amount.
πŸ“˜

Note

The amount raised can be a decimal number, however the number of donors must be a whole number.

πŸ“˜

Note

To create an automatic time-limited challenge campaign, combine Challenge Mode with theΒ Active From/Thru options in the template settings.

Tracking progress

The following contains information on tracking progress:

Progress Tracker on the Donation Form

Once the challenge has been enabled, a progress tracker will appear on the donation form:

This progress tracker isΒ visible to the public.

When the goal is reached, the progress bar simply reaches 100%, and the challenge statistics continue to count up:

External Progress Tracking

Using theΒ vcsi_iDonate_Gift_Metadata_Combined view, you can write a query or report to calculate the same challenge progress as the donation form, and display the tracking information on another website such as a RiSE website.

-- For Amount-Based Goals
SELECT SUM(GiftAmount)
FROM vcsi_iDonate_Gift_Metadata_Combined
WHERE ChallengeTemplate = '<ENTER TEMPLATE UID>'
-- For Donor Count-Based Goals
SELECT COUNT(DISTINCT ID)
FROM vcsi_iDonate_Gift_Metadata_Combined
WHERE ChallengeTemplate = '<ENTER TEMPLATE UID>'

Notes on Challenge donation statistics

Donate Now - Premium only records challenge statistics if the template mode is currently set toΒ Challenge.

A template can exist prior to it becoming a "Challenge Template", and if donations are entered against that template, theyΒ will not affect the challenge statistics.

Similarly, if a template is set toΒ Challenge, and then sometime later is changed back toΒ Standard, Donate Now - Premium does NOT delete the previous challenge statistics for that template - they are still available in the gift metadata for historical purposes.

Therefore, if a template was previously inΒ Challenge mode, reset toΒ Standard mode, and then changed back toΒ Challenge mode, it will retain its previous statistics from the first time that it was set toΒ Challenge.

πŸ“˜

Note

To start a new challenge campaign with different donation statistics, use theΒ Save Template As... feature to create a new copy of the template.

Β If you need to delete challenge statistics for a template, contact support to get assistance with updating that data for you.


Did this page help you?