Science fiction turns into a actuality! We are able to now work together and use issues we had been used to seeing in films each day.
One of many current revolutionary applied sciences is ChatGPT which can change how we work A LOT!
As a programmer, I initially didn’t imagine that it may clear up superior duties however was shocked by seeing how useful it may be in my each day life. So I began enjoying round and located the methods I’ve discovered it helpful and wished to share.
Listed below are 5 ChatGPT examples and helpful methods SEOs and entrepreneurs can use it for each day advertising duties.
Compose Common Expressions In Analytics Reporting
Common expressions can be utilized in composing analytic experiences comparable to Google Search Console or Google Analytics. Common expressions are one of the crucial boring duties I do know, and it might actually decelerate work. For entrepreneurs, it’s even more durable as they don’t have a technical background.
Let’s take a look at an instance of GSC’s reporting, which helps filtering by regexp.
In case you are a marketer with no technical background, you could discover it exhausting to make use of this characteristic and restrict your self to the few fundamental regexps which you’ll find by looking out dev-related boards.
Now you’ve ChatGPT at your disposal!
Simply go to ChatGPT and ask: “compose regular expression which starts with “How To” or “What is” case insensitive utilizing RE2 syntax
”

Yup!
(?i)^(?:How To|What's)
It received the job accomplished immediately. Simply copy and paste within the GSC’s filter subject, and you’ll have all of the queries that are candidates to optimize for FAQ or HowTo schema.

Fairly simple, isn’t it?
You should use it to compose regexp for GA experiences as properly. For instance, let’s say you wish to filter a report which has within the URL phrases “Samsung” and “phone”. Simply ask ChatGPT “compose regular expression which contains words “Samsung” and “phone” case insensitive utilizing RE2 syntax
”.
Simply to notice, it is very important point out “RE2 syntax” within the command, as Google’s reporting dashboards help that syntax.
Compose Complicated Spreadsheet Formulation
Everybody works with Excel or Google Sheets. It’s in everybody’s each day work life, and you understand how it’s typically robust to compose spreadsheet formulation as you could do analysis to seek out the operate title you want after which spend 10-15mins in determining easy methods to make it work.
Now it simply takes you to ask ChatGPT a command like: “Google Sheet components which copies all rows from sheet1 the place column "A" comprises phrase "iphone"
“.
And it didn’t take lengthy to get the answer.

However, the components it gave =QUERY(Sheet1!A:Z, "SELECT * WHERE A CONTAINS 'iphone'", "Sheet2!A1")
has a small error. After all, ChatGPT is just not all the time offering 100% right solutions, however you could be mistaken. It’s best to verify typically and repair it manually. The components I received is 99% right, besides third parameter shouldn’t be there. So I eliminated it manually and now have =QUERY(Sheet1!A:Z, "SELECT * WHERE A CONTAINS 'iphone'")
which works completely!
Setup Customized Pixel Conversions
In case you are a PPC marketer or simply an search engine optimisation who desires to arrange customized conversions when customers carry out sure actions on the web site however don’t have an online developer’s assist, it may very well be fairly difficult in some conditions. Sure, you should utilize Google Tag Manager in lots of circumstances when customers click on on the hyperlink, however you would want smth. totally different, which isn’t a built-in characteristic of GTM.
For instance, that you must ship a conversion occasion when one lands in your touchdown web page and scrolls by 35% of the web page. Now you don’t want to rent a developer to get the job accomplished. Simply go to ChatGPT and ask: “send Facebook pixel custom conversion event once as users scroll through 35% of the page using JavaScript
” and it’ll do the magic!

You possibly can copy and paste this code in your <head> tag of HTML, and you’re accomplished. In case you have a WordPress web site, you should utilize plugins such WPCode to make the job simpler. Alternatively, you should utilize Google Tag Supervisor customized HTML tag so as to add your JavaScript code there.
It saves you time to discover a developer for small each day duties you’ve and even you probably have a dev. staff, you’ll be able to considerably scale back their workload by doing it your self.
Optimize FAQ and Featured Snippets
search engine optimisation professionals could need assistance getting associated questions from customers to optimize content material for a selected key phrase. You should use ChatGPT to get these associated inquiries to make your content material extra useful. In case you have a journey weblog, you could ask: associated questions relating to "cozy cities in Germany"
and ChatGPT will draw many queries which actually make sense.

After all, there could also be ones that don’t make sense, however they may do 90% of the job. The questions it suggests could haven’t any search quantity, however it’s nonetheless value going after them as a result of zero-search volume keywords could drive vital visitors.
Fetch Knowledge from APIs and Coding
Let’s say you’ve a WooCommerce Retailer and wish to fetch all merchandise you’ve with their costs right into a Google Sheet. Now you’ll be able to merely ask: “google app script which fetches all product names and prices from WooCommerce REST API and adds into a spreadsheet
” and you’re accomplished.
It gave me a totally purposeful code:
operate fetchProducts(){
var url = "https://yourshop.com/wp-json/wc/v3/merchandise";
var choices = {
"methodology": "get",
"headers": {
"Authorization": "Fundamental " + Utilities.base64Encode("YOUR_CONSUMER_KEY:YOUR_CONSUMER_SECRET")
}
};
var response = UrlFetchApp.fetch(url, choices);
var json = JSON.parse(response.getContentText());
for (var i = 0; i < json.size; i++) {
var title = json[i].title;
var worth = json[i].worth;
// Do one thing with the product title and worth
}
var sheet = SpreadsheetApp.getActiveSheet();
for (var i = 0; i < json.size; i++) {
var title = json[i].title;
var worth = json[i].worth;
sheet.appendRow([name, price]);
}
}
It typically could give a code with a small error that that you must repair manually, like within the above instance of the Google Spreadsheet components.
The coding skill of ChatGPT goes to be particularly helpful when working with Zapier. In case you have ever used Zapier, you realize it has a Zap referred to as “code,” which is for superior customers. Now it isn’t. In case you have information in a sure ugly format that must be mounted now, you’ll be able to simply ask ChatGPT to repair and use it in Zapier customized code to wash up the information.
Conclusion
There are talks that ChatGPT goes to switch people, and plenty of professions are simply going to die out. In my private opinion, it won’t occur, however it would make life simpler in numerous trade fields.
Extra assets:
Featured Picture: ParinPix/Shutterstock