1. Advertising
    y u no do it?

    Advertising (learn more)

    Advertise virtually anything here, with CPM banner ads, CPM email ads and CPC contextual links. You can target relevant areas of the site and show ads based on geographical location of the user if you wish.

    Starts at just $1 per CPM or $0.10 per CPC.

Use broad, exact and phrase match?

Discussion in 'Google AdWords' started by tbarr60, Jan 23, 2006.

  1. #1
    Is there any benefit to using broad, exact and phrase match for the same term? I'd appreciate feedback not on what is understood to be the correct answer but base it on your testing and experience.

    Thanks.
     
    tbarr60, Jan 23, 2006 IP
  2. Micromag

    Micromag Well-Known Member

    Messages:
    1,757
    Likes Received:
    67
    Best Answers:
    0
    Trophy Points:
    165
    #2
    For me there is no difference or there is a so small difference that do not worth to maintain such kind of list.

    Let me tell you my experiment:

    I had e theory about 3 months ago that if I use broad, exact and phrase match for the same terms on the same adgroups the AdWords system would give me priority for the exact machs for such terms and would boost my impressions for the adgroups that I use such method.

    So I found this site:

    http://www.mikes-marketing-tools.com/adwords-wrapper.html

    that you just paste your keywords list there and it return the "Wrapped" List (with all mathes).

    So I did some tests like measure conversion, impressions and clicks for some of my adGorups for some days and after that I went to these groups and "wrapped" the keyword list - waitted for some additional days and compared the results from both periods (normal list and wrapped list) for the same group.

    I could see that there is absolutly no change in group behaviour and also there is the disadvantege that the adGroups has 3x the number of keywords.

    So in my opinion just use these additional matchs for very specific cases.
     
    Micromag, Jan 24, 2006 IP
    mazhi likes this.
  3. GuyFromChicago

    GuyFromChicago Permanent Peon

    Messages:
    6,728
    Likes Received:
    528
    Best Answers:
    0
    Trophy Points:
    0
    #3
    The only time I've found testing it worthwhile is when I'm evaluating a high volume (like 50,000 - 100,000 impressions) keyword. I like to run each match through a round of impressions and then stick with the one that produced the best ROI.

    It's an easy test to do - give it a go and see how it works for you.
     
    GuyFromChicago, Jan 24, 2006 IP
  4. T0PS3O

    T0PS3O Feel Good PLC

    Messages:
    13,219
    Likes Received:
    777
    Best Answers:
    0
    Trophy Points:
    0
    #4
    I'm with GFC.

    If I advertise Red Bicycle - I put in (and I made a PHP function for it):

    red bicycle
    "red bicycle"
    [red bicycle]

    Then indeed after a few weeks just monitor how well they go. If one of them tends to do the trick, delete the rest and up the bid.
     
    T0PS3O, Jan 24, 2006 IP
  5. GuyFromChicago

    GuyFromChicago Permanent Peon

    Messages:
    6,728
    Likes Received:
    528
    Best Answers:
    0
    Trophy Points:
    0
    #5
    Stay out of the red bicycle market, it's mine!:p

    It is intersting to see the results from these tests. I've yet to uncover any pattern to which matching option works best. Sometimes exact match is the clear winner, and for another similiar term in the same market broad match is the way to go.

    Just reinforces the importance of testing I suppose.
     
    GuyFromChicago, Jan 24, 2006 IP
    mazhi likes this.
  6. T0PS3O

    T0PS3O Feel Good PLC

    Messages:
    13,219
    Likes Received:
    777
    Best Answers:
    0
    Trophy Points:
    0
    #6
    For those interested, here's the very simple PHP script.

    It's intended to auto append whatever product type to product models.

    So if you advertise the BC930 Offroad Bicycle, the script would look like this:

    
    <?php 
       
       if(isset($_GET['kw']))
       {
       	//result page
       	$kw = $_GET['kw'];
       	
       	$result_set = $kw . '<br>';
       	$result_set.= '"' . $kw . '"<br>';
       	$result_set.= '[' . $kw . ']<br>';
       	$result_set .= $kw . ' offroad bicycle<br>';
       	$result_set.= '"' . $kw . ' offroad bicycle"<br>';
       	$result_set.= '[' . $kw . ' offroad bicycle]<br>';
       	$result_set .= $kw . ' off road bicycle<br>';
       	$result_set.= '"' . $kw . ' off road bicycle"<br>';
       	$result_set.= '[' . $kw . ' off road bicycle]<br>';
       	$result_set .= $kw . ' off-road bicycle<br>';
       	$result_set.= '"' . $kw . ' off-road bicycle"<br>';
       	$result_set.= '[' . $kw . ' off-road bicycle]<br>';
       	
       	echo $result_set;
       	
       	echo'<br><br><form name="aw" action="aw.php" method="get"><input type="text" name="kw" size="24"><input type="submit" name="submit" value="submit"></form>';
       	
       }
       else
       {
       	//search page
       	echo'<form name="aw" action="aw.php" method="get"><input type="text" name="kw" size="24"><input type="submit" name="submit" value="submit"></form>';
       }
       
       
    ?>
    
    PHP:
    Works great if you have to enter tons of models with a finite set of KWs added. Just enter the model number in the search box.

    Just save it as aw.php
     
    T0PS3O, Jan 24, 2006 IP
    mazhi likes this.
  7. tbarr60

    tbarr60 Notable Member

    Messages:
    3,455
    Likes Received:
    125
    Best Answers:
    0
    Trophy Points:
    210
    #7
    Other than a little extra effort to put in all three variants, is there any downside to having all three keywords? I assume that if there is a clear winner or loser(s), culling the weak ones would help CTR and Quality Score.

    I'll try the three and cull after a week or two.
     
    tbarr60, Jan 24, 2006 IP
    mazhi likes this.
  8. T0PS3O

    T0PS3O Feel Good PLC

    Messages:
    13,219
    Likes Received:
    777
    Best Answers:
    0
    Trophy Points:
    0
    #8
    No downsides that I know of. It's just more knowledge to you basically.

    For instance, if "red bicycle" gets all the hits and not [red bicycle] it's a sign to look for whatever they type in front of it or behind it. You might find a great nihce for 'striped red bicycle' for exampe. Or 'red bicycle race'. For which you can do a stand alone, optimized ad.

    That wouldn't have occured to you as easily if you didn't have data to base it on.
     
    T0PS3O, Jan 24, 2006 IP