• Using this plugin to a plugin in..

    Can I export one column of data to give a “total.”

    This is what I’m doing…

    I’m building a site for free for a college tennis team for their fund raising campaign. They work with Ronald McDonald House… great foundation!

    They have a donation page you can see it here… http://www.utmtennis-rayofhope.com > They want a banner at the top that says “raised this far=$$$”

    And they want it to auto update for the running totals.

    Now to get a little more complicated… each player accepts pledges for “wins.” So the “wins” will change every week. I can get that value in their no problem. So the “running total” would be a combination of…

    “One time donations” + “PlayerA pledge-per-win x #wins” + “PlayerB pledge-per-win x #wins” + “PlayerC pledge-per-win x #wins” + “PlayerD pledge-per-win x #wins”

    🙁

    I really want to make this happen for them. Their goal is like 12k this year and they will hit it and deserve to have a nice pretty site that functions like they want it… I’m just having a hard time on this one… :-/

    Anyone help?

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author Michael Simpson

    (@msimpson)

    For donations you could using something like [cfdb-value function="sum" form="donations" show="amount"]

    Assuming the other values can also be gotten from [cfdb-value] tag or some other way, you could embed the sum of those values in a javascript tag with content like:

    var runningTotal = [cfdb-value ...] + [cfdb-value ...] + ... ;

    Thread Starter jerkjone

    (@jerkjone)

    does your site explain that in a little more detail?

    Thanks for your help btw… 🙂

    Plugin Author Michael Simpson

    (@msimpson)

    Refer to the page on [cfdb-value]

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Is this possible…’ is closed to new replies.