How to cancel BT broadband

After 3 weeks of having no broadband and BT refusing to believe it's their equipment its now time to cancel. I've had a look at my account online but can't see how to cancel. I've had it for many years so I'm guessing there won't be a cancellation fee. My next bill is due 2nd December so can it be done before I stump up for another 3 months broadband?
Also what happens to the router etc.

Hello JD_123,
There's an option to cancel on the help line when you phone them.
The number is 0800 111 4567
Cheers..

Similar Messages

  • I want to cancel my broadband and pay off my debt.

    Recently I was shocked to discover that my direct debit had been altered to £73.50 a month! I was informed, upon contacting your billing people, that this was due to a number of phone calls I had made.  I have since discovered that the internet phone which was provided with the Option 3 Broadband package is no longer being produced and, therefore, my free evening and weekend calls no longer apply.  No warning was given or any information about this passed to me!  I have been informed that the onus was on ME to find this out!  I entered a contract and the terms of that contract were made clear to me and that contract has been broken as far as I am concerned. 
    Ever since I made the terrible mistake of signing up for BT Broadband, I have been treated appallingly and it is my wish to cancel my Broadband and no longer have anything to do with British Telecom or its services.  From day one my speeds were absolutely ridiculously slow and I had to go through the indignity of calling an Indian call centre who's staff would give the constant run around with the usual "Switch it on and off again" stupidity.  We are talking speeds of less than 1meg which was not what I was paying for.  I was even, on a few occasions where I said there was something wrong with the line, called a liar and had the phone slammed down on me.  Throughout this time I was charged £65 a month which was way over the agreed amount but I accepted this as I was told this was the charge for installation.
    This £65 bill went on for longer than I care to remember (And certainly much longer than was necessary to pay off the installation charge!) so I contacted one of your staff who agreed that I was paying way more than I should have been and so the charge was reduced to £40 a month.  I was told that it would always be £40 a month and was assured that that was set in stone and would not change.  Once again your staff have lied to me. 
    I spoke to one of your staff recently, after they had contacted me enquiring about my cancellation of the direct debit (I had no choice as we have no income and are awaiting news on benefits and have a chronically ill baby son so any money we do manage to scrape together goes on train fairs to Great Ormond Street for his treatment.  I also have a chronic kidney condition which is potentially fatal and have had to give up on my own medical treatment, essentially condemning myself to death, as I can no longer afford to get to my own appointments.  I include this information to illustrate just how terrible our financial situation has become.) explaining that I wished to cancel my BT Broadband and phone package as I  am moving home and simply cannot afford to have a landline and internet package anymore.  I was advised that I should wait until I had further information on my move, as the moving in date had not been set yet, and call again where I would be able to cancel my package and come to an arrangement to pay off my debt (Which would be around the £140 mark - your staff are unable to give me a fixed sum as of yet) in instalments.
    I called today to cancel my package on the date of 24th May 2012 (Our moving date) and arrange said instalment plan only to be told that I am unable to come to an arrangement to pay the debt if I dare to leave British Telecom and that they will have no option but to contact a debt collection agency to claim the amount in full unless I renew my contract(!).  It is my understanding that, as I am not in contract with BT anymore, I can cancel my broadband package any time I please and it is also my right to arrange a payment plan without being bullied and cajoled into staying as a BT customer when I have absolutely no desire to do business with this company EVER again.

    Hi I suggest you contact the forum mods they should be able to get your problem sorted for you this is a link to them
    http://bt.custhelp.com/app/contact_email/c/4951
    they normally reply by email or phone directly to you within 3 working days
    They are a UK based BT specialist team who have a good record at getting problems solved
    This is a customer to customer self help forum the only BT presence here are the forum moderators
    If you want to say thanks for a helpful answer,please click on the Ratings star on the left-hand side If the reply answers your question then please mark as ’Mark as Accepted Solution’

  • Is there any way of cancelling a broadband order o...

    Is there any way of cancelling a broadband order on the grounds of unreasonable delay in fulfillment? I've moved house and office I was told that my phone number would be moved and my broadband set up within two weeks - that is, one week after moving. This was just about acceptable since moving is always chaotic and friends, clients and colleagues expect it. But I run my business from home and I have been told today (19 Jan) that I will have to wait another week.This is unacceptable to me if I can find an alernative supplier who will set me up within the next few days.

    Welcome to the BT Residential Customers forum
    As you are a business user, please could you post on the BT Business forum at http://business.forums.bt.com/
    Thanks
    For information, this may help regarding any claims.
    http://www2.bt.com/static/i/btretail/panretail/terms/bt1121.htm
    Bear in mind, its Openreach that do any provision works for all service providers, so cancelling and changing providers, would send you to the bottom of the queue.
    Broadband provision cannot take place until there is a working telephone line. Once that is in place, then there will be a delay until the broadband task can be completed, depending on how busy Openreach are.
    There are some useful help pages here, for BT Broadband customers only, on my personal website.
    BT Broadband customers - help with broadband, WiFi, networking, e-mail and phones.

  • How to cancel the event in Item Adding and display javascript message and prevent the page from redirecting to the SharePoint Error Page?

    How to cancel the event in Item Adding without going to the SharePoint Error Page?
    Prevent duplicate item in a SharePoint List
    The following Event Handler code will prevent users from creating duplicate value in "Title" field.
    ItemAdding Event Handler
    public override void ItemAdding(SPItemEventProperties properties)
    base.ItemAdding(properties);
    if (properties.ListTitle.Equals("My List"))
    try
    using(SPSite thisSite = new SPSite(properties.WebUrl))
    SPWeb thisWeb = thisSite.OpenWeb();
    SPList list = thisWeb.Lists[properties.ListId];
    SPQuery query = new SPQuery();
    query.Query = @"<Where><Eq><FieldRef Name='Title' /><Value Type='Text'>" + properties.AfterProperties["Title"] + "</Value></Eq></Where>";
    SPListItemCollection listItem = list.GetItems(query);
    if (listItem.Count > 0)
    properties.Cancel = true;
    properties.ErrorMessage = "Item with this Name already exists. Please create a unique Name.";
    catch (Exception ex)
    PortalLog.LogString("Error occured in event ItemAdding(SPItemEventProperties properties)() @ AAA.BBB.PreventDuplicateItem class. Exception Message:" + ex.Message.ToString());
    throw new SPException("An error occured while processing the My List Feature. Please contact your Portal Administrator");
    Feature.xml
    <?xml version="1.0" encoding="utf-8"?>
    <Feature Id="1c2100ca-bad5-41f5-9707-7bf4edc08383"
    Title="Prevents Duplicate Item"
    Description="Prevents duplicate Name in the "My List" List"
    Version="12.0.0.0"
    Hidden="FALSE"
    Scope="Web"
    DefaultResourceFile="core"
    xmlns="http://schemas.microsoft.com/sharepoint/">
    <ElementManifests>
    <ElementManifest Location="elements.xml"/>
    </ElementManifests>
    </Feature>
    Element.xml
    <?xml version="1.0" encoding="utf-8" ?>
    <Elements xmlns="http://schemas.microsoft.com/sharepoint/">
    <Receivers ListTemplateId="100">
    <Receiver>
    <Name>AddingEventHandler</Name>
    <Type>ItemAdding</Type>
    <SequenceNumber>10000</SequenceNumber>
    <Assembly>AAA.BBB, Version=1.0.0.0, Culture=neutral, PublicKeyToken=8003cf0cbff32406</Assembly>
    <Class>AAA.BBB.PreventDuplicateItem</Class>
    <Data></Data>
    <Filter></Filter>
    </Receiver>
    </Receivers>
    </Elements>
    Below link explains adding the list events.
    http://www.dotnetspark.com/kb/1369-step-by-step-guide-to-list-events-handling.aspx
    Reference link:
    http://msdn.microsoft.com/en-us/library/ms437502(v=office.12).aspx
    http://msdn.microsoft.com/en-us/library/ff713710(v=office.12).aspx
    Amalaraja Fernando,
    SharePoint Architect
    Please Mark As Answer if my post solves your problem or Vote As Helpful if a post has been helpful for you. This post is provided "AS IS" with no warrenties and confers no rights.

    Recommended way for binding the list event handler to the list instance is through feature receivers.
    You need to create a feature file like the below sample
    <?xmlversion="1.0"encoding="utf-8"?>
    <Feature xmlns="http://schemas.microsoft.com/sharepoint/"
    Id="{20FF80BB-83D9-41bc-8FFA-E589067AF783}"
    Title="Installs MyFeatureReceiver"
    Description="Installs MyFeatureReceiver" Hidden="False" Version="1.0.0.0" Scope="Site"
    ReceiverClass="ClassLibrary1.MyFeatureReceiver"
    ReceiverAssembly="ClassLibrary1, Version=1.0.0.0, Culture=neutral,
    PublicKeyToken=6c5894e55cb0f391">
    </Feature>For registering/binding the list event handler to the list instance, use the below sample codeusing System;
    using Microsoft.SharePoint;
    namespace ClassLibrary1
        public class MyFeatureReceiver: SPFeatureReceiver
            public override void FeatureActivated(SPFeatureReceiverProperties properties)
                SPSite siteCollection = properties.Feature.Parent as SPSite;
                SPWeb site = siteCollection.AllWebs["Docs"];
                SPList list = site.Lists["MyList"];
                SPEventReceiverDefinition rd = list.EventReceivers.Add();
                rd.Name = "My Event Receiver";
                rd.Class = "ClassLibrary1.MyListEventReceiver1";
                rd.Assembly = "ClassLibrary1, Version=1.0.0.0, Culture=neutral,
                    PublicKeyToken=6c5894e55cb0f391";
                rd.Data = "My Event Receiver data";
                rd.Type = SPEventReceiverType.FieldAdding;
                rd.Update();
            public override void FeatureDeactivating(SPFeatureReceiverProperties properties)
                SPSite sitecollection = properties.Feature.Parent as SPSite;
                SPWeb site = sitecollection.AllWebs["Docs"];
                SPList list = site.Lists["MyList"];
                foreach (SPEventReceiverDefinition rd in list.EventReceivers)
                    if (rd.Name == "My Event Receiver")
                        rd.Delete();
            public override void FeatureInstalled(SPFeatureReceiverProperties properties)
            public override void FeatureUninstalling(SPFeatureReceiverProperties properties)
    }Reference link: http://msdn.microsoft.com/en-us/library/ff713710(v=office.12).aspxOther ways of registering the list event handlers to the List instance are through code, stsadm commands and content types.
    Amalaraja Fernando,
    SharePoint Architect
    Please Mark As Answer if my post solves your problem or Vote As Helpful if a post has been helpful for you. This post is provided "AS IS" with no warrenties and confers no rights.

  • How to cancel an order if transaction not complete

    How to cancel an order if transaction not complete

    Presuming you're referring to a purchase from the iTunes Store, go here:
    http://www.apple.com/support/itunes/contact/
    and follow the instructions to report the issue to the iTunes Store. Refunds are not guaranteed, but iTunes support should be able to help you in one way or another.
    Regards.

  • How to cancel an order or to remove one item, bought as a guest?

    how to cancel an order or to remove one item, bought as a guest?

    That does not help at all.
    Please explain.  Use sentences please.
    How do you buy something as a guest? 
    You have an iphone?
    You purchased an app?
    You don't want the app?  Simply delete it.  This is covered in the manual.
    If you do not explain what you are talking about, then it is very difficult to help

  • How to cancel excise invoice when mov type is 122

    Hello,
    We are creating the PO for one material. and make the GR for that material (material is Quality inspection material)
    so i,e the reason the material is goes to Quality inspection.
    Till then we are Made the J1IEX create the Part1 and Part2 entry.
    So in mean while in Quality all the material's are rejected so, now how to reverse the Part1 and Part2 entries.?
    How to cancel excise invoice when material is qulaity inpspection.
    What i made:
    Made the Return delivery means 122 mov doc and Try to cancell the excise invoice......but no successful
    Regards
    sapman man

    Hi
    Cancelling of excise invoice will be done in the following ways depending on the situation.
    Case 1:
    Create PO
    Do MIGO (create and post excise invoice)
    Create return delivery in quality inspection.
    Now we have to create a rejection inmvoice in J1IS with reference to the return delivery wherein the excise values gets reversed.
    If u try to reverse part 2 entries in J1IEX it will not come.
    Case2:
    Create PO
    Do MIGO (create and post excise invoice)
    Do cancellation of MIGO (102 mvt)
    With ref to vendor or internal excise invoice number just post the transaction. excise part 2 entries will get reversed. This will happen only if 102 entry exist for the PO line item.
    In a nutshell excise entries cancellation comes only if we cancel the material document. If we do return delivery then we have to create rejection excise invoice.
    Hope u get cleared in this regards
    Reg
    Raja

  • HT1918 how to cancel itunes match

    How do I cancel this?  I emailed this useless **** at apple and she gave me the wrong ansewer.  I already did put no renew of itunes match. 
    anyone know how to cancel this?
    Hello Ari,
    Lisa here, from iTunes Store Support. I understand that you would like to cancel your iTunes Match subscription. I am sure you are eager to have this issue resolved and I would be happy to assist you today!
    Please note that if you have an iTunes Match subscription, you can't change countries until the subscription has expired. Your subscription expires 08/18/2013.
    To turn off Auto-Renew for iTunes Match, follow these steps:
    1) Open iTunes.
    2) From the pull-down Store menu in the menu bar, Choose Store > Sign In.
    3) Enter your iTunes Store account name and password, then click Sign In.
    4) Go to the Store menu again, Choose Store > View My Account.
    5) Enter your account name and password a second time, then click View Account.
    You will be taken to your Apple Account Information page. On this page, simply click the "Turn Off Auto-Renew" button next to iTunes Match.
    For more information about iTunes Match, visit:
    http://www.apple.com/icloud/features/
    http://www.apple.com/itunes/whats-new/
    I hope this information is helpful! Please let me know if you require any further assistance with your account, as if you do, I would be glad to help. Thank you very much for being part of the iTunes Store family, Ari. I hope you have a great day!
    Sincerely,
    Lisa
    iTunes Store/Mac App Store Customer Support
    http://www.apple.com/support/itunes/ww
    Thank you for allowing me the opportunity to assist you.
    First Name : ari
    Last Name : newman
    Email : [email protected]
    Apple ID (Optional) : [email protected]
    Lang_Country : en_AU
    Product : iTunes Store
    Support Subject : Purchases, Billing & Redemption
    Sub Issue : itunes match
    GCRM Case ID : 413932684
    See additional info below
    Choose the iTunes Store or App Store for your country:  Australia
    Item title:  how to cancel itunes match
    Order number: 
    Details:
    Hi how do I cancel my itunes match?  I dont use and I am moving countries soon.  please let me know what I need to do to cancel iTunes Match?
    thanks
    © 2013 Microsoft
    Terms
    Privacy
    Developers
    English (United States)
    © 2013 Microsoft
    Terms
    Privacy
    Developers
    English (United States)

    Brian,
    Again, not accurate. When Match is "turned off" all of the Matched song instances are still shown in the Ibrary and all devices still stream - so, if you have your songs also stored on your local drive (which I choose to as one does not always have access to WiFi and I use the local instances of the songs for some music production/DJing), iTunes shows each song twice.  This is cumbersome if you simply want to play an album - you have to hear each song twice. There is no reason technologically they could not simply show the metadata for a song only once and simply hit the cloud object store when it it is not found as a local disk target. This would solve some of the issues and it is pretty much how any content delivery network (CDN) works - and this is how my local Genius Bar assured me it would work before I bought the service. I found they know little about Match.
    Other issues: I believe the "exclusive" Cloud Playtlist logic still stands - iTunes protests if you add a non-Matched song to a Playlist (as it assumes you want all Playlists to be cloudy). Also, the APLCARE person and I  could not figure out what "Removed" (under Cloud Status) means despite looking up several explanations on the Web. And, we found songs that were only in the cloud that should have also been on my local drive as I never deleted them. That said, it is also a pain to fully delete a song (local + the cloud). Plus, the logic in the Purchased section around what constitutes "Not On Computer" did not hold up. They have lots of logical challenges with thier workflow.
    Regardingyour suggestion, there is no way to "not use" Match. Only when one is disconnected from the iTunes store does Match seem to go away completely.The only thing you can turn off is the song syncing/matching/uploading. This amounts only to turning off a sub-process not the service.
    Match is likely fine for most who do not want to have any copy of the songs locally and are fine having access to their music only when connected via WiFi. I wanted more ubiquitous access to my collection from my iPad and my iPhone but needed to keep my songs local to my MBP too. This is not the proper use case as I have learned.
    Of course I won't renew, but I should be able to cancel a service that I am dissatisfied with.

  • Recently I have added a new icloud account for my iphone but now my email is hacked and I cant complete the verification process.How to cancel the verification in my phone?  plsz help me.....

    Hi
    Recentky I have added a new icloud account to my iPhone 5s but my email is now hacked! so I can't complete the verification procedures. How to cancel the current verification process????plszz help me...

    Ah thanks Razmee however there is NO option to delete the iCloud account in settings!

  • How to cancel tabbed viewing in Fireworks CS5?

    How to cancel tabbed viewing in Fireworks CS5? I don't like tabs, but I couldn't find in Preferences an option to cancel it.

    Choose Window > Cascade from the main toolbar.

  • How to cancel an idoc in status 64

    How to cancel an idoc in status 64

    Hi Manju,
    If you have table updation access then
    Go to SE16 --> Table EDIDC --> Give your "IDoc number" -->  change the status from 64 to "73 IDoc archived".
    Or you can ask to your ABAPer to do that.
    Hope it helps,
    Regards,
    MT

  • How to cancel email notification from snapshot and simulation

    Hi,
    We've activated workflow template WS28700001 so that email notification can be triggered when task release. Meanwhile we are using snapshot and simulation at the same time. But when saving sanpshot or simulation the tasks which have status of released also trigger email nofitication. How to cancel this notification of snapshot and simulation?
    Regards.

    Hi Ravi
    I have added a Container Element(version) in workflow template WS28700001 and set a workflow start condition as follows.
    &Task.Version& = ' '
    Regards
    Yemi

  • Hello, I would like to know how to transfer one of my two "membership" to an other computer because I just bought a new Mac.... ? Or how to cancel it on my old laptop so I can activate it on my new computer. Thanks a lot !

    Hello, I would like to know how to transfer one of my two "membership" to an other computer because I just bought a new Mac.... ? Or how to cancel it on my old laptop so I can activate it on my new computer. Thanks a lot !

    Hi Virginie,
    You need to go under the help menu option and sign out from Muse and then install it on the other computer that you want using the creative cloud desktop app.
    - Abhishek Maurya

  • How to cancel my personal subscription to CC so I can use my second team licence from work at home?

    How to cancel my personal subscription to CC so I can use my second team licence from work at home?
    Hi there, I have both a personal subscription and a team subscription to Creative Cloud. This means I also have to adobe.com accounts.
    My boss just informed me that I have 2 licences on the team plan, and I should be using my other team licence at my home office. (Can't do corporate work on a personal computer).
    So, how do I easily cancel my personal subscription and add my team subscription on my home computer? I'll need the second licence of software to be for a mac (my office computer is a PC).
    Hope this makes sense. Thanks so much!
    ~Charity Meinhart

    @quahsweekoon1
    You can cancel recurring payments as shown in this guide: https://support.skype.com/faq/FA1881/
    In case recurring payment already went through then you would need to contact customer service. They will check your account and if you are eligible they can issue the refund for the payment.
    In order to contact customer service you will need to follow this link: http://www.skype.com/go/support.login
    Here's also a guide: https://support.skype.com/faq/FA1170
    If answer was helpful please mark it with Kudos and if issue is resolved mark it with solution. This will help other users find this answer more easily. Thanks in advance!

  • I preordered the new one direction album and I ment to preorder the one with 18 songs and it preordered both of the albums and I don't know how to cancel the one can someone help me?

    I preordered a album then preordered the Same one and I don't know how to cancel the one I preordered that I didn't mean too and it's charging me for both and I don't have a lot of money on my iTunes

    Go to the iTunes Store. Click on your Apple ID and enter your password. Scroll down towards the end of the page, you should see a line item that says Pre-Order. You can cancel the pre-order there.

Maybe you are looking for

  • Substitution Error - coming while running KALC

    Dear All I have a peculiar problem , i have created a substitution rule , ie  where company code = 123 and document type i =CO and T Code is Kalc , substitued it with business place 001 . This is require for cross company code posting, so i created a

  • Initial load flag

    Hello! I would like to separate records (apart from later deltas) that come with initial load to infocube. To be precise for 2LIS_12_VCITM --> 0SD_C03. Any idea apart from creating new rules and filling a special field with init/delta flag? Tnx Goraz

  • Save button enabled in MAX, but no changes to apply

    Hello, I have a situation with a number of my RT targets.  When I open an RT target in MAX, the Save button (and Revert button) are enabled as if there are settings to be applied to the unit.  I've gone through the process of pressing the save button

  • Help with statement

    Dear all I have a process where I have 60 million rows of data in one table. I need to check each row in the table and if the row doesn't exist in my lookup table then I need to remove the row. Currently this is done by selecting the 60 million rows

  • Thunderbird - Messages in Inbox missing???

    Hello, I was checking the messages in my Inbox earlier and all was ok.  I clicked out of my e-mails and then came back about a half hour later and found all the messages in my Inbox were gone.   Does anyone know what might have happened and how I mig