Ali Phillips | A Patient's Guide to Intersection Syndrome [tcb-script src="https://cdn.tailwindcss.com?plugins=typography"][/tcb-script]

Ali Phillips | Hand & Wrist Specialist

Pain in your forearm near the back of your wrist?

I'm Ali Phillips. If you're feeling pain and tenderness on the middle of the back of your forearm, a few inches from your wrist, you might have Intersection Syndrome. Let's explore this overuse condition and how we can get you back to your activities without pain.

Book a Consultation

What is Intersection Syndrome?

Intersection Syndrome is an overuse condition affecting the tendons in your forearm. It occurs at the specific point where two sets of tendons cross over each other. Imagine two ropes rubbing together – this friction causes the tendon linings (the tenosynovium) to become inflamed and swollen.

This condition is common in people who do activities involving repetitive wrist extension, like rowers, weightlifters, and racquet sport players. The pain is located a few inches up from your wrist on the thumb side of your forearm.

What are the symptoms of Intersection Syndrome?

Localised Pain

Pain and tenderness on the top of the forearm, about 4-6 inches up from the wrist joint.

Swelling

You might notice a visible swelling in the painful area due to the inflammation of the tendons.

Squeaking Sound (Crepitus)

Sometimes, you can hear or feel a "squeaking" or "creaking" sound as the inflamed tendons rub against each other.

Is This Your Forearm Pain?

If this specific pain and swelling is stopping you from enjoying your activities, a clear diagnosis is the first step towards a solution. Let's find out what's going on and create a plan to help.

Get a Clear Diagnosis

How will I diagnose your forearm pain?

Diagnosis is primarily based on a physical examination. The location of the pain and the presence of crepitus (the squeaking sound) are key indicators. You can try a simple self-test at home, but stop if it causes significant pain.

1️⃣

Rest your forearm on a table.

2️⃣

With your other hand, place your fingers gently over the painful area on your forearm.

3️⃣

Repeatedly bend your wrist up and down.

If you feel a creaking or squeaking sensation under your fingers during this movement, it is a very strong sign of Intersection Syndrome. An ultrasound scan can also be used to confirm the inflammation.

How can I help you get better?

We'll create a personalised treatment plan together, always starting with the simplest options first.

Rest & Splinting The most important first step is to rest the arm and avoid the activities that cause pain. A splint can help to immobilise the wrist and allow the inflammation to settle.
Anti-inflammatories Over-the-counter medications like ibuprofen can help to manage pain and reduce inflammation.
Steroid Injections An injection of corticosteroid directly into the inflamed area can be very effective at settling the inflammation and providing lasting relief.
Surgery Surgery is rarely needed but can be considered if other treatments fail. The procedure involves a small incision to release the tight compartment, allowing the tendons to glide freely.

Frequently Asked Questions

They are both tendon inflammation problems, but they occur in different locations. De Quervain's causes pain directly at the base of the thumb on the side of the wrist. Intersection Syndrome causes pain higher up the forearm, about 4-6 inches from the wrist, on the top surface.

With complete rest and by stopping the activity that caused it, mild cases can sometimes resolve. However, because it's an inflammatory condition caused by friction, it often requires treatment to fully settle down and prevent it from becoming a chronic issue.

The medical term is "crepitus." It's a very distinctive sign of Intersection Syndrome and is caused by the inflamed and swollen tendon linings rubbing against each other as they cross over. It can sometimes sound like wet leather rubbing together.

A steroid injection is often very effective for Intersection Syndrome. Because it's a problem of inflammation in a specific area, delivering a powerful anti-inflammatory medication directly to the source can provide significant and often long-lasting relief.

Surgery is rarely needed for this condition. It would only be considered in persistent cases where non-surgical treatments like rest, splinting, and injections have not provided adequate relief from the pain.

Test Your Knowledge!

Take Control of Your Hand Health

You don't have to let forearm pain limit your life. Effective, evidence-based treatments are available. The next step is to get an accurate diagnosis and a personalised plan from a specialist.

Schedule Your Appointment
[tcb-script] document.addEventListener('DOMContentLoaded', () => { const quizData = [ { question: "Where is the pain from Intersection Syndrome typically felt?", answers: ["At the base of the thumb", "On the inside of the elbow", "On the top of the forearm, a few inches from the wrist"], correct: "c" }, { question: "Intersection Syndrome is caused by what?", answers: ["A trapped nerve", "Friction between two groups of tendons", "A broken bone"], correct: "b" }, { question: "What is the medical term for the 'squeaking' sound sometimes heard with this condition?", answers: ["Stenosis", "Crepitus", "Arthritis"], correct: "b" }, { question: "Which activity is most likely to cause Intersection Syndrome?", answers: ["Sleeping", "Typing on a keyboard", "Rowing or weightlifting"], correct: "c" }, { question: "What is a key part of the non-surgical treatment for Intersection Syndrome?", answers: ["Vigorous exercise", "Rest and avoiding the painful activity", "Hot baths"], correct: "b" }, { question: "How is Intersection Syndrome different from De Quervain's?", answers: ["It is more painful", "It affects a different location on the forearm/wrist", "It only affects athletes"], correct: "b" }, { question: "What is often a very effective treatment for persistent symptoms?", answers: ["Painkillers alone", "A steroid injection into the inflamed area", "Surgery"], correct: "b" }, { question: "Is surgery common for Intersection Syndrome?", answers: ["Yes, it's the first-line treatment", "No, it is rarely needed", "Only for older patients"], correct: "b" }, { question: "What is the main goal of surgery if it is required?", answers: ["To remove the tendons", "To release the tight tissue causing the friction", "To fuse the wrist joint"], correct: "b" }, { question: "What is the best first step if you think you have Intersection Syndrome?", answers: ["Wait for it to go away", "Get an accurate diagnosis from a specialist", "Try heavy lifting to strengthen the area"], correct: "b" } ]; function loadQuiz() { const quizContainer = document.getElementById('quiz-container'); if (!quizContainer) return; quizContainer.innerHTML = ''; quizData.forEach((item, index) => { const questionEl = document.createElement('div'); questionEl.className = 'quiz-question bg-slate-50 p-5 rounded-xl'; let answersHtml = ''; item.answers.forEach((answer, answerIndex) => { const answerId = `q${index}_${answerIndex}`; const answerValue = String.fromCharCode(97 + answerIndex); answersHtml += `<label for="${answerId}" class="block p-2 rounded-lg hover:bg-slate-200 cursor-pointer"><input type="radio" id="${answerId}" name="q${index}" value="${answerValue}" class="mr-3">${answer}</label>`; }); questionEl.innerHTML = `<p class="font-bold mb-3 text-lg text-[#053654]">${index + 1}. ${item.question}</p><div class="space-y-2 text-[#135589]" data-question="${index}" data-answer="${item.correct}">${answersHtml}</div>`; quizContainer.appendChild(questionEl); }); } window.showTab = function(event, tabID) { const tabContainer = event.currentTarget.closest('.rounded-2xl'); const tabContents = tabContainer.querySelectorAll('.tab-content'); tabContents.forEach(content => content.classList.remove('active')); const allTabs = tabContainer.querySelectorAll('.tab'); allTabs.forEach(t => t.classList.remove('active')); tabContainer.querySelector('#' + tabID).classList.add('active'); event.currentTarget.classList.add('active'); } document.getElementById('check-answers-btn')?.addEventListener('click', function() { const questions = document.querySelectorAll('.quiz-question'); let score = 0; questions.forEach((question, index) => { const correctAnswer = quizData[index].correct; const selectedAnswer = document.querySelector(`input[name="q${index}"]:checked`); question.classList.remove('correct', 'incorrect'); if (selectedAnswer) { if (selectedAnswer.value === correctAnswer) { score++; question.classList.add('correct'); } else { question.classList.add('incorrect'); } } else { question.classList.add('incorrect'); } }); const resultText = document.getElementById('quiz-result'); if(!resultText) return; resultText.textContent = `You got ${score} out of ${quizData.length} correct!`; if (score > 7) { resultText.textContent += " Great job!"; resultText.style.color = '#34c759'; } else { resultText.textContent += " Good try! Review the sections above to learn more."; resultText.style.color = '#ff3b30'; } }); const accordionItems = document.querySelectorAll('.accordion-item'); accordionItems.forEach(item => { const button = item.querySelector('.accordion-button'); const content = item.querySelector('.accordion-content'); const icon = button.querySelector('svg'); button.addEventListener('click', () => { const isExpanded = content.style.maxHeight && content.style.maxHeight !== '0px'; accordionItems.forEach(otherItem => { if (otherItem !== item) { otherItem.querySelector('.accordion-content').style.maxHeight = '0px'; otherItem.querySelector('.accordion-button svg').style.transform = 'rotate(0deg)'; } }); if (isExpanded) { content.style.maxHeight = '0px'; icon.style.transform = 'rotate(0deg)'; } else { content.style.maxHeight = content.scrollHeight + 'px'; icon.style.transform = 'rotate(180deg)'; } }); }); window.addEventListener('resize', () => { accordionItems.forEach(item => { const content = item.querySelector('.accordion-content'); if (content.style.maxHeight && content.style.maxHeight !== '0px') { content.style.maxHeight = content.scrollHeight + 'px'; } }); }); loadQuiz(); }); [/tcb-script]

Latest Articles

Categories

Contact

  • Wessex Nuffield Hospital, Winchester Rd, Chandler's Ford, Eastleigh SO53 2DW
  • +44 7359 248 779
  • contactus@cpmoffice.co.uk

Social

Copyright 2026 Ali Phillips, all rights reserved.