Home
Buy on eBid
Sell on eBid
eBid Stores
My eBid
Upgrade to Seller+ Lifetime
eBid Help
Close
Login to Your Account
eBid Community Forums - Chat & find help from others in the eBid Community
Results 1 to 9 of 9

Thread: Coupons to drive traffic here from Yahoo group

  1. #1

    Default Coupons to drive traffic here from Yahoo group

    Sorry if this has been addressed, tried searching and had no luck.

    From what I have seen online, the best thing to do is to produce a coupon with a tracking code on it. I am thinking the codes should be different (00001, 00002, 00003) so I can make sure people aren't redeeming them more than once.

    Is this the right way to go about it? Thanks all!

  2. #2
    Forum Saint astral276's Avatar
    Join Date
    Jun 2008
    Location
    Grantham, Lincolnshire, United Kingdom
    View astral276's Feedback (+194)
    All-About astral276
    View astral276's Listings
    Forum Posts
    19,132

    Default

    Not sure exactly what you are trying to do here. Are you giving discount coupons to Yahoo users?

    I looked at a similar thing once of giving discount coupons to buyers to redeem against future purchases. I used a unique sequence of 13 alphanumeric characters rather than a simple incrementing number. This number I then would record as issued to a certain person. That way I could be sure that the coupon was valid and being used by the person it was issued to.

    I never ran with the scheme so I don't know if it would have worked or not.


  3. #3
    Forum Lurker Maxx's Avatar
    Join Date
    Jan 2009
    Location
    Berlin, Wisconsin, United States
    View Maxx's Feedback (+11)
    All-About Maxx
    View Maxx's Listings
    Forum Posts
    95

    Default

    Hi Guys, I'm going to give out coupons also. I like Mel's idea of how to number the coupons. But they will be given out to customers who have bought before.

    The coupons will be good for a set amount of time (3 months).
    Then I will use a spread sheet to put the buyer info, the coupon number, and expiration date.

    That's my plan anyway.

    I like the idea of giving out coupons on other community sites to get new customers. I haven't thought about that. Good idea, MediaOne. :-)


    MAXX DEALS
    Great deals on electronic accessories. We have very competitive prices, ship fast, and offer combined shipping to save you money.


    - Group: Increase your Search Engine Ranking. Advertise your Store Effectively (Temporarily Inactive)
    - Click here to Join eBid. It's quick. It's easy. It's Free!
    - All About MAXX

  4. #4

    Default

    I tried the coupon scheme with buyers who bought from me on Feebay - but not one of the coupons was ever presented.

    Vintage postcards bought and sold
    Established internet postcard trader since 2004
    and we now have an Ebid book store (mainly non fiction)

    Our Stores: http://oldpostcards.ebid.net/
    http://books4sale.ebid.net/

    All About Me: http://uk.ebid.net/users/OldPostcards

  5. #5

    Default

    Well, the coupons would be given out via the yahoo group that is a newsletter, q&a type board. It will allow people to opt-in to merch updates/special sent to their email accounts, bothy Yahoo and non-Yahoo. After registering, the welcome email would include the code. Yahoo membership isn't a requirement to sign up however.

    I too like the alpha-numeric system that was mentioned. I guess the only issue would be if someone had 2 accts. John1@yahoo and John2@yahoo. There would be no way to check that. Still would make two sales in that case.

  6. #6
    Forum Saint astral276's Avatar
    Join Date
    Jun 2008
    Location
    Grantham, Lincolnshire, United Kingdom
    View astral276's Feedback (+194)
    All-About astral276
    View astral276's Listings
    Forum Posts
    19,132

    Default

    An Excel macro (GetPerms) I wrote to generate a series of unique 13 character alphanumeric codes follows if it is of any use.


    Code:
     
    Dim seq As String * 36
     
    Sub GetPerms()
        Dim i As Integer, j As Integer, k As Integer
        Dim code As String, num() As String
        Dim count As Integer, CurrentRow As Integer
        Dim unique As Boolean
     
        Randomize
        seq = "ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
        ActiveSheet.Columns(1).Clear
        CurrentRow = 1
     
        Do Until count > 0 And count <= 1000
            count = Val(InputBox("How many results do you want? (1 - 1000):", "Astral", 1000))
            If count = 0 Then Exit Sub
        Loop
        ReDim num(count)
     
        For i = 1 To count
            Do While unique = False
            unique = True
                code = getnum
                For k = 1 To count
                    If num(k) = "" Then Exit For
                    If num(k) = code Then
                        unique = False
                        Exit For
                    End If
                Next k
            Loop
            num(i) = code
            unique = False
        Next i
     
        For j = 1 To count
            Cells(CurrentRow, 1) = num(j)
            CurrentRow = CurrentRow + 1
        Next j
    End Sub
     
    Function getnum() As String     ' build sequence of numbers
        Dim j As Integer
     
        For j = 1 To 13
            newnum = newnum + Mid(seq, (Int(Rnd * 36) + 1), 1)
        Next
     
        getnum = newnum
     
    End Function
    Also available as an Excel workbook at: http://homepage.ntlworld.com/astral....temp/codes.xls
    Last edited by astral276; 15th April 2009 at 03:40 PM.


  7. #7
    Forum Lurker Maxx's Avatar
    Join Date
    Jan 2009
    Location
    Berlin, Wisconsin, United States
    View Maxx's Feedback (+11)
    All-About Maxx
    View Maxx's Listings
    Forum Posts
    95

    Default

    Thanks Mel,
    Right after replying to this thread I went to work to create a coupon tracking sheet. Thanks for your macro, it would have come in handy!
    Maxx


    MAXX DEALS
    Great deals on electronic accessories. We have very competitive prices, ship fast, and offer combined shipping to save you money.


    - Group: Increase your Search Engine Ranking. Advertise your Store Effectively (Temporarily Inactive)
    - Click here to Join eBid. It's quick. It's easy. It's Free!
    - All About MAXX

  8. #8
    Forum Saint astral276's Avatar
    Join Date
    Jun 2008
    Location
    Grantham, Lincolnshire, United Kingdom
    View astral276's Feedback (+194)
    All-About astral276
    View astral276's Listings
    Forum Posts
    19,132

    Default

    Quote Originally Posted by Maxx View Post
    Thanks Mel,
    Right after replying to this thread I went to work to create a coupon tracking sheet. Thanks for your macro, it would have come in handy!
    Maxx
    After posting I spotted a logic error that would allow, albeit unlikely, a non unique code to be picked during a run.

    OP containing code updated and the worksheet for download also updated.

    Hopefully correct this time.


  9. #9

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Follow Us
New To eBid?
Register for Free