ตัวนี้น่าใช้ครับเพราะว่าเขาวาง Campaign structure แบบเดียวกับที่ผมทำใน Google Adwords campaign ของผม
โดยที่ปัญหาที่ผมเจอทุกๆ Campaign นั้นก็คือ Low Search Volume ครับเพราะบางคำที่เป็น Low Search Volume นั้นเป็น Longtail keyword ที่ได้มาจาก Broadmatch modified หรือ Phrasematch โดยที่คำดั่งกล่าวนั้นเป็นคำที่ไม่ค่อยมีคน Search เท่าไหร่ทำให้โฆษณาเราไม่ขึ้นถ้าไม่ทำเป็น Broad match หรือ Phrase Match
วิธีแก้ปัญหาคือต้องกลับไปใช้ Broad match , Broad match modified หรือ Phrase Match ครับ
แต่จะแก้ไขปัญหาเหล่านี้เร็วๆได้อย่างไร ใน Comment ของคุณ
Dimtiris Tzemos ได้เขียนไว้เมื่อ February 2017
จาก url : https://www.en.advertisercommunity.com/t5/Advanced-Features/Script-to-stop-low-search-volume-keywords/td-p/204792#
Pausing low search volume keywords may have a positive effect on your account performance. Especially if you use campaign-level separation between exact and broad keywords (example: 1 campaign with exacts, 1 campaigns for broads, all exact keywords as negatives to the broad campaign)
Pause คำค้นหาที่เป็น low search volume นั้นอาจจะช่วยให้มีผลลัพท์ที่เป็น + กับ Account performance ของ google adwords ของคุณ โดยเฉพาะคนที่ structure campaign แยกกันระหว่าง Exact match campaign กับ broad match campaign ยกตัวอย่างงเช่น ( 1 campaign ด้วย exact match และ 1 campaign สำหรับ broads โดย คีย์เวอร์ด exact match ใน campaign exact match นั้นจะ negative ใน แคมเปนที่เป็น broad match ด้วย)
You can filter low search volume keywords by using SystemServingStatus variable from KEYWORD_PERFORMANCE_REPORT. See here: https://developers.google.com/adwords/api/docs/appendix/reports/keywords-performance-report
คุณสามารถ filter คำทีเ่ป็น low search volume ออกด้วยการใช้ SystemServingStatus variable จาก KEYWORD_PERFORMANCE_REPORT. ดูจากลิ้งนี้ต่อ https://developers.google.com/adwords/api/docs/appendix/reports/keywords-performance-report
โดยที่ Adwords Script ของคูณจะดูเหมือนแบบนี้นะครับ
Your Adwords script must look like:
var keywords = AdWordsApp.keywords()
.withCondition(“SystemServingStatus = ‘RARELY_SERVED'”)
.get();
while(keywords.hasNext()) {
var keyword = keywords.next();
keyword.pause();
}
หรือลองใช้ Ready to use script จากตัวนี้
หรือ ลองอ่านบทความของ PPCHero ต่อได้ที่นี่
https://www.ppchero.com/low-keyword-search-volume-no-problem
ใครที่สนใจอ่าน Google Adwords (Google Ads) Script ต่ออย่าลืม subscribe ได้นะครับเดียวจะลงเทคนิคเพิ่มเรื่อยๆ