Customize Consent Preferences

Privacy Policy
Last Updated On 09-Aug-2023
Effective Date 01-Aug-2023

This Privacy Policy describes the policies of Shem Opolot, email: info@shemopolot.com, phone: 0772100100 on the collection, use and disclosure of your information that we collect when you use our website ( https://shemopolot.com ). (the “Service”). By accessing or using the Service, you are consenting to the collection, use and disclosure of your information in accordance with this Privacy Policy. If you do not consent to the same, please do not access or use the Service.
We may modify this Privacy Policy at any time without any prior notice to you and will post the revised Privacy Policy on the Service. The revised Policy will be effective 180 days from when the revised Policy is posted in the Service and your continued access or use of the Service after such time will constitute your acceptance of the revised Privacy Policy. We therefore recommend that you periodically review this page.

Information We Collect:
We will collect and process the following personal information about you:

Name
Email
Mobile

How We Use Your Information:
We will use the information that we collect about you for the following purposes:

Testimonials
Customer feedback collection
Processing payment
Support
Manage customer order
Manage user account
If we want to use your information for any other purpose, we will ask you for consent and will use your information only on receiving your consent and then, only for the purpose(s) for which grant consent unless we are required to do otherwise by law.

Retention Of Your Information:
We will retain your personal information with us for 90 days to 2 years after user accounts remain idle or for as long as we need it to fulfill the purposes for which it was collected as detailed in this Privacy Policy. We may need to retain certain information for longer periods such as record-keeping / reporting in accordance with applicable law or for other legitimate reasons like enforcement of legal rights, fraud prevention, etc. Residual anonymous information and aggregate information, neither of which identifies you (directly or indirectly), may be stored indefinitely.

Your Rights:
Depending on the law that applies, you may have a right to access and rectify or erase your personal data or receive a copy of your personal data, restrict or object to the active processing of your data, ask us to share (port) your personal information to another entity, withdraw any consent you provided to us to process your data, a right to lodge a complaint with a statutory authority and such other rights as may be relevant under applicable laws. To exercise these rights, you can write to us at info@shemopolot.com. We will respond to your request in accordance with applicable law.
You may opt-out of direct marketing communications or the profiling we carry out for marketing purposes by writing to us at info@shemopolot.com.
Do note that if you do not allow us to collect or process the required personal information or withdraw the consent to process the same for the required purposes, you may not be able to access or use the services for which your information was sought.

Cookies Etc.
To learn more about how we use these and your choices in relation to these tracking technologies, please refer to our Cookie Policy.

Security:
The security of your information is important to us and we will use reasonable security measures to prevent the loss, misuse or unauthorized alteration of your information under our control. However, given the inherent risks, we cannot guarantee absolute security and consequently, we cannot ensure or warrant the security of any information you transmit to us and you do so at your own risk.

Grievance / Data Protection Officer:
If you have any queries or concerns about the processing of your information that is available with us, you may email our Grievance Officer at Shem Opolot, 256 Kampala, Uganda, email: info@shemopolot.com. We will address your concerns in accordance with applicable law.

Always Active

Necessary cookies are required to enable the basic features of this site, such as providing secure log-in or adjusting your consent preferences. These cookies do not store any personally identifiable data.

No cookies to display.

Functional cookies help perform certain functionalities like sharing the content of the website on social media platforms, collecting feedback, and other third-party features.

No cookies to display.

Analytical cookies are used to understand how visitors interact with the website. These cookies help provide information on metrics such as the number of visitors, bounce rate, traffic source, etc.

No cookies to display.

Performance cookies are used to understand and analyze the key performance indexes of the website which helps in delivering a better user experience for the visitors.

No cookies to display.

Advertisement cookies are used to provide visitors with customized advertisements based on the pages you visited previously and to analyze the effectiveness of the ad campaigns.

No cookies to display.

Real work problems: Get more from your surveys

Hi friend! This week we tackle a real work problem I encounter a lot.

Scenario

You are preparing for a luncheon to launch your new product called Sobar. Sobar is a bar of soap that cures alcohol-induced hangovers by using it when you shower. Yep! TO THE MOON!! In preparation for the luncheon, you send out a google form to get the details of the attendees and get preorders of Sobar.

Make a copy of this Google Form and follow along.

Get the survey responses in a spreadsheet

The responses to a Google Form survey can be extracted to a Google Sheet and stored in your Google Drive. However, I often get the responses in a Google Sheet but find that I have to add more columns to clean up the data or make it more lucid. For example, in our hypothetical, we know the number of Sobars each attendee wants to order, but we need to compute their total bills. Here’s what we do:

First, we fill out the Google Form twice to get 2 responses to test in our spreadsheet. We do this by previewing the form, filling it out and hitting submit.

Clicking the eye at the top right will preview the form

After submitting the 2 responses, we extract them into a google spreadsheet.

Click the spreadsheet icon, follow the prompts and create the spreadsheet

The Responses spreadsheet with our 2 responses

Compute the total bill based on the orders

Google Forms does not let us build order forms without using add-ons. In a future post, I will show you how to use an add-on to create order forms and invoice clients automatically. However, today we must use the spreadsheet to compute the total amount to bill the attendees. Let’s say each Sobar costs UGX 50,000. We can compute the Total owed by multiplying the number of orders by 50000 in an adjacent column.

Calculate total owed by multiplying orders in the D column by 50000

We can also copy this calculation throughout column E to apply it to future responses. We do this by editing the formula to reflect a range and copying the formula downwards. We can specify the range: D2:D100; however, I usually just use the whole column (D2:D) to be safe. After all, sales are going TO THE MOON, remember?

The calculation is pretty simple but we have 2 problems:

  1. The zeros in the empty cells in column E are ugly.
  2. As we get more responses, the total owed should be calculated automatically since we copied our formula down the entire column, right? Wrong! Return to the Google Form and submit another response. See what happens in the spreadsheet? The calculation does not update and we get a space instead🥺.

Let’s solve Problem #2 first

Remember the first rule of working with data? “DO NOT EDIT THE RAW DATASET!”

Google Sheets does not make it easy for you to calculate in the original sheet and this is a good thing.

Notice the gap highlighted in red

But what should we do?

Use IMPORTRANGE

I talked about the IMPORTRANGE function a while back and we have a chance to use it. We use IMPORTRANGE to create a live copy of the original dataset. Every time we get a new response, the response is added to the original sheet and the copy we made using IMPORTRANGE.

We open a new sheet and set it up as shown below. Do not be intimidated or confused by the formatting; I just like pretty spreadsheets. However, I always place the link to the original spreadsheet at the top in cell A1, so I can access it quickly. In cell A2, I place a note that indicates where I am going to type my IMPORTRANGE function. This way no one (including future me) deletes the contents of cell A3 (labelled Timestamp), which will delete the whole imported range.

While clicking in cell A3, my IMPORTRANGE formula is shown in the formula bar

IMPORTRANGE takes 2 arguments: the link to the original spreadsheet and the sheet name, followed by an exclamation mark, and the columns you would like to import.

=IMPORTRANGE("Link_to_original_spreadsheet","Sheet_name!A:D"

With a copy of the original dataset, we can now add the Total owed column again and recalculate. However, this time we will use the ARRAYFORMULA function.

Use ARRAYFORMULA

The ARRAYFORMULA function saves you time on repetitive calculations by automating them. The ARRAYFORMULA function has complex applications, but today, we will do something simple: Type the formula for calculating the total owed in the first cell below Total owed. Do not forget to add the range (D4:D) so that the calculation applies to all the numbers in column D. The formula should look something like this: D4:D*50000 depending on how your spreadsheet is set up. Before clicking ENTER to calculate, surround the formula in brackets (or parentheses, depending on the primary school you went to) and add ARRAYFORMULA in front of the first bracket (clearly we know the primary school I went to😅). Another way to activate ARRAYFORMULA is to click inside the formula bar and press Ctrl + Shift + Enter (Command + Shift + Return on Mac). ARRAYFORMULA will appear around the formula automatically.

Your sheet should look something like this

Now you can press ENTER. The calculations are made but the trailing zeros persist. Let’s ignore them for now.

To ensure the calculations will update automatically in this sheet when we get new responses, we return to the Google Form and submit another response. To ensure we are on the same page, enter a male called “Jake Kawesa” who preordered 10 Sobars.

Would you look at our boy, Jake😁

We have solved problem #2! The calculations are updating automatically now.

Solve Problem #1: Remove the zeros using a nested IF function

Now that the calculations are automated, we could stop here. However, I’d like to remove the trailing zeros so the sheet looks neater.

First, it is important to understand why the zeros are showing up. We have used an array formula to perform a calculation on ALL the cells in column D. When the cell in column D is empty, 50000 is multiplied by the 0 in column D to give the zeros we see in column E.

Using an IF function nested inside the ARRAYFORMULA function, we can tell Google Sheets to ignore the empty cells in column D so that the zeros disappear. Let me write it in words first then I’ll type up the formula:

We are going to tell Google Sheets to check inside column D, and look for entries. IF the cell is not empty, the calculation we want should be performed. However, IF the cell is empty, we want it to return an empty cell.

We will do this within the ARRAYFORMULA function so that the condition applies to all the cells in column D. We edit our array formula as follows:

=ARRAYFORMULA(IF(ISBLANK(D4:D),,D4:D*50000))

💡: In the formula above:

1. ISBLANK(D4:D) is the condition we check for in the IF function. ISBLANK checks if a cell is empty and returns TRUE or FALSE.

2. IF returns nothing if our condition (ISBLANK(D4:D) is TRUE, and it returns the result of our calculation (D4:D*50000) if the condition is FALSE. Here’s how to use IF:

If zeros persist, seek medical advice

The persistent zeros are gone and our sheet will update as new responses come in. Problem #1 solved!

Before you throw a dance party, I recommend you hide (not delete) the original sheet of responses so you are never tempted to mess with it.

The bible advises you to flee from temptation

Conclusion

This week’s post was quite involved but practical, I hope. Learning about the existence of cool functions is useless if you cannot use them to solve your daily problems. I hope this makes you excited to send out a survey.

Have a great week!