Skip to main content

How to submit QPDs with Nil returns

Submit QPDs nil returns

So you were excited about starting a business, you've registered your company but are yet to start trading. QPDs are due and you know you have to submit your returns but haven't started making money. You have two options, one is to get a consultant to do it for you. The other is to do it yourself. Quite scary, intimidating or whatever word you choose to call it, but I’m hoping your outlook will have drastically changed by the end of this article. You can choose to go with a consultant, which is recommended when you are making significant income, but you can also simply do it yourself at no cost and I will show you exactly how. 

What are QPDs?

QPDs stands for Quarterly Payment Dates. These are estimates of your taxes on projected annual profits that are paid in quarterly instalments. So when the year begins, you make forecasts of how much your business will make in that year, and then break down the total estimated tax into smaller tax units that you will be paying every quarter. The breakdown is as follows 

Quarterly Payment Dates (QPD's) 





In the instance that you do not make as much as you had expected in a certain quarter, there is room to make adjustments and the same applies when you exceed projections. When one fails to submit their QPDs ZIMRA will estimate and charge them accordingly.

What are nil returns?

This is when a business has not made any income, probably because the business was not operating. The business therefore submits an ITF12B form with a taxable income of zero(nil).

The following steps will outline how to submit QPDs with nil returns.

Steps to submit your NIL RETURNS


The following steps are applicable if your business is not yet trading.

1. Get an ITF 12B form. You can download one here

2. Fill in the Quarter for which you are submitting returns. Is it the 1st, 2nd, 3rd or 4th quarter? Also add the year as shown below.  




3. Enter your personal details

4. Write NIL on your estimated annual net profit or loss. Ignore the addition and deductions section




5. Enter your Taxable income as Nil

6. Enter your Quarterly Payment due as Nil as well

7. Enter your name, designation and signature.




 8. Submit your Forms and copies to the nearest ZIMRA office. In Bulawayo, this is at Mhlahlandlela government complex.

Congratulations. You have just submitted your nil returns. That wasn’t so bad after all, was it? 

Comments

Popular posts from this blog

Hip hop and RnB songs to apologize to your partner

Love is a beautiful thing, but it often goes wrong. This often leads to pain, suffering and sorrow.  Being imperfect beings, hearts tend to get broken all the time regardless how hard we may try to avoid it.  The heartbreak is often inadvertent but at times we find ourselves in the wrong. An oversight, a word unsaid or even a lapse in our judgement can cause our loved ones harm. This doesn't always have to be the end though. Oftentimes, relationships can be mended by simply uttering three simple words: "I AM SORRY". This article is a collection of some of my favourite 'I'm sorry' songs. I hope you'll enjoy these apology songs, but more importantly, I hope you will get a few quotables and some wisdom nuggets from them.  The best apology however, is to change behaviour (got that from a Jay Z interview) so as you apologize, please remember that it was your actions that hurt them. The best apology is one which involves you not repeating those same mistakes aga

Php date: How to get the first and last day of the week

In this tutorial, I'll show you how to get the first and last day of the week in php. By default, in PHP the week runs from Monday to Sunday. However we'll cover two methods to get the first and last day for both those who consider Sunday or Monday as their first day of the week. We will be using 2 functions to achieve this: date() strtotime() We will use a combination of these two functions and store the result in a variable.  How to get the first day of the week If you want to get Sunday, use this method: $firstday = date('l Y-m-d', strtotime("sunday -1 week")); echo $firstday; If you want to get the date for Monday, this current week, use this method: $monday = date('l Y-m-d', strtotime("monday -1 week ")); echo $monday; How to get the last day of the week The following code will give you Saturday as the last day of the current week. $lastday = date('l Y-m-d', strtotime("saturday 0 week")); echo $last

How to easily create background notifications in Sketchware(original)

How to easily create background notifications in Sketchware(original) One of the keys to building a successful app is to find mechanisms that will keep your users engaged. You can do this by using background notifications. This tutorial will show you how to do that in Sketchware. We will cover: 1. How to create notifications in Sketchware 2. How to show these notifications even when the app is closed.