Anne Holland Johnson, MD - Sports Medicine, Foot and Ankle | HSS (2024)

This browser is no longer supported.

To get the best experience using our site, we recommend downloading the latest version of Chrome, Safari, Edge or Firefox.

Anne Holland Johnson, MD - Sports Medicine, Foot and Ankle | HSS (1)

Sports Medicine, Foot and Ankle

Anne Holland Johnson, MD - Sports Medicine, Foot and Ankle | HSS (2)

Dr. A. Holly Johnson is an orthopedic surgeon at HSS specializing in helping people return to their pre-injury level of activity, whether that is running ultra-marathons, playing collegiate ice hockey, walking for exercise, or merely fitting into regular shoewear. Dr. Johnson is an expert in the treatment of orthopedic conditions of the foot and ankle, with a focus on minimally invasive bunion correction and sports-related injuries. She also repairs Achilles tendon tears, foot and ankle traumatic injuries, deformities, and arthritis, with a focuson arthroscopic and minimally invasive techniques. Dr. Johnson currently serves as Assistant Team Physician for the New York Rangers.

After earning her BA cum laude in English from Harvard University, Dr. Johnson graduated with her MD from the University of Chicago's Pritzker School of Medicine. She completed her Orthopedic Surgery Residency and Foot and Ankle Fellowship at HSS. Prior to returning to HSS in March, 2018, she practiced at Massachusetts General Hospital and Harvard Medical School from 2008-2018. Dr. Johnson was Captain of the Harvard Women's Ice Hockey Team, achieving All-Ivy and ECAC accolades. She is a physician for USA Women's Ice Hockey and served as the Team Physician at the 2014 Sochi Olympics. She is also currently a team physician for the New York Liberty (WNBA) professional basketball team.

Dr. Johnson has served on the Board of the American Orthopedic Foot& Ankle Society (AOFAS) as well as multiple other AOFAS committees devoted to humanitarian mission work and the advancement of women in the orthopedics. She has researched and published in multiple areas of foot and ankle orthopedics.

In her spare time, Dr. Johnson runs marathons and plays tennis, golf and ice hockey. She enjoys staying active with her husband and three children.

Profile Video

Departments

Foot and Ankle Service
Orthopedic Surgery

Specialized Centers

Performing Arts Medicine Collaborative

Special Expertise

Achilles tendon rupture
Achilles tendonitis
Bunion correction
Fractures of the foot and ankle
LisFranc injuries
Severe ankle sprains and syndesmosis injuries
Sports injuries of the foot and ankle
Tendon disorders of the foot and ankle

Procedures

Arthroscopic treatment of OCD talus-flatfoot reconstruction
Arthroscopy of the foot and ankle
Ligament repair and reconstruction
Minimally invasive Achilles tendon repair
Minimally invasive bunion correction/forefoot surgery
Minimally invasive surgery
ORIF ankle fractures
Tendon transfer

Patient Stories

Patient ratings for Dr. Johnson

loading...

Learn more about our patient ratings.

Insurance

If your insurance is not listed, please call our office if you have questions regarding your insurance coverage. If you have out-of-network benefits, then your insurance may reimburse you for a portion of your office visit. We will work with you and your insurance to minimize your out-of-pocket costs. Financial assistance may be available for patients in need.

Credentials

Appointments

Associate Attending Orthopedic Surgeon, Hospital for Special Surgery
Associate Professor of Orthopaedic Surgery,Weill Cornell Medical College
Associate Attending Orthopedic Surgeon, NewYork-Presbyterian Hospital

Affiliations

American Orthopedic Foot& Ankle Society (AOFAS) and Foundation

Certification

ABOS2009

Education

University of Chicago, Pritzker School of Medicine, Chicago,IL,2001

Internship

New York Hospital, Weill Cornell, New York, NY,2002

Residency

Hospital for Special Surgery, New York, NY,2006

Fellowship

Foot and Ankle Orthopedic Surgery, Hospital for Special Surgery, New York, NY,2007

State Licensure

Languages

English

For My Patients

Anne Holland Johnson, MD - Sports Medicine, Foot and Ankle | HSS (5)

Surgical Locations

Dr. Johnson performs surgery at the following locations:

Anne Holland Johnson, MD - Sports Medicine, Foot and Ankle | HSS (6)

FAQs

  • Achilles Tendon Rupture
  • Achilles Tendoscopy
  • Ankle Fracture Surgery
  • Ankle Instability
  • Bunion Surgery
  • Flat Foot Reconstruction Surgery
  • Gastroc Recession Surgery
  • Hallux Rigidus Surgery
  • Hammertoe Surgery
  • Midfoot Fusion Surgery
  • OCD Surgery
  • Tendon Transfer Surgery
  • General Surgery FAQ

Publications by Dr. Johnson

Patient Education

  • Midfoot Fusion: Surgery for Arthritis Foot Pain
  • How to Help Your Feet Weather the Winter
  • Achilles Tendon Rupture
  • Minimally Invasive Bunion Surgery

Selected Journal Articles

For all publications, please see the PubMed listing.

Selected Books/Chapters

The Cavovarus Foot - OKU Foot and Ankle, Chou L, American Academy of Orthopedic Surgeons, 2014.

Ankle Impingement – Foot and Ankle Sports Medicine, Altchek D, Dines J, DiGiovanni C, Wolters Kluwer Health, Lippincott Williams and Wilkins, 2014.

Pes Cavus, Johnson AH, May C. OKO (Orthopedic Knowledge Online, from AAOS) 2012 Ankle Impingement, Sports Injuriesto the Foot and Ankle, 2012.

Selected Presentations

"Deltoid, posterior malleolus fracture, syndesmotic injuries: what do we fix?" American-Indo Orthopedic Foot and Ankle Conference, Hyderabad, India 2018

"Minimally invasive technique for forefoot deformity." Wright Medical Fellows Course, Memphis, TN 2017

"Posterior Ankle Endoscopic Techniques." Chinese Orthopedic Association Annual Meeting, Zhuhai, China 2017

"Lisfranc Injuries: how do we improve outcomes?" Chinese Orthopedic Association Annual Meeting, Zhuhai, China 2017

"Lisfranc Treatment – Where we are now." Grand Rounds Boston University Department of Orthopedics, Boston, MA 2017

"Dreams and Heartbreak: Sochi 2014."Grand Rounds Massachusetts General Hospital, Boston, MA 2014

"Ankle Arthritis – Current Treatment." Keynote Speaker Hokkaido Orthopedic Society Annual Meeting, Asahikawa, Japan 2011

' //Formats outputvar publications, idStringList;var pubmedSearchAPI = "https://eutils.ncbi.nlm.nih.gov/entrez/eutils/esearch.fcgi?";var pubmedSummaryAPI = "https://eutils.ncbi.nlm.nih.gov/entrez/eutils/esummary.fcgi?";var database = "db=pubmed";var returnmode = "&retmode=json";var returnmax = "&retmax=8";var sortby = "&sort=pub_date";var searchterm = "&term=((hss[Affiliation]) OR (hospital for special surgery[Affiliation])) AND (Johnson+AH[Author]))";var returntype = "&rettype=abstract";var idURL = pubmedSearchAPI + database + sortby + returnmode + returnmax + searchtermconsole.log(idURL);var getPubmed = function(url) { //passed url return new Promise(function(resolve, reject) { var xhr = new XMLHttpRequest(); xhr.open('get', url, true); xhr.responseType = 'json'; xhr.onload = function() { var status = xhr.status; if (status == 200) { //status 200 signifies OK (http://www.w3schools.com/ajax/ajax_xmlhttprequest_onreadystatechange.asp) resolve(xhr.response); } else { reject(status); } }; xhr.send(); });};const input = document.querySelector('input');const log = document.getElementById('demo');//window.onload=updateValue;$(document).ready(updateValue);function updateValue(e) {sortby = "&sort=pub_date";searchterm = '&term=((hss[Affiliation]) OR (hospital for special surgery[Affiliation])) AND (Johnson+AH[Author])';idURL = pubmedSearchAPI + database + returnmode + returnmax + sortby + searchterm console.log(idURL);getPubmed(idURL).then(function(data) { var idList = data.esearchresult.idlist; idStringList = idList.toString(); //converts the idlist to a string to be appended to the search url idStringList = '&id=' + idStringList; summaryURL = pubmedSummaryAPI + database + sortby + returnmode + returntype + idStringList; getPubmed(summaryURL).then(function(summary) { publications = formatReferences(summary); console.log(publications) document.getElementById("demo").innerHTML = publications; var articlecount = document.querySelectorAll('#demo .article').length;console.log(articlecount); if (articlecount <= 7) { $("#showmore").css("display", "none");} }, function(status) { publications = 'Something went wrong getting the ids.'; });}, function(status) { publications = 'Something went wrong getting the ids.';});}function formatReferences(summary) { var publicationList = ''; for (refs in summary.result) { if (refs !== 'uids') { var authors = ''; var publication = ''; var authorCount = ((summary.result[refs].authors).length); var i = 0; while (i < authorCount - 1) { authors += summary.result[refs].authors[i].name + ', '; i++; } publication = HTMLpublication.replace('%data%', 'http://www.ncbi.nlm.nih.gov/pubmed/' + refs); authors += summary.result[refs].lastauthor; publication = publication.replace('%authors%', authors); publication = publication.replace('%title%', summary.result[refs].title); publication = publication.replace('%journal%', summary.result[refs].source); publication = publication.replace('%PMID%', summary.result[refs].uid); publication = publication.replace('%date%', summary.result[refs].pubdate.slice(0,4)); publication = publication.replace('%date2%', summary.result[refs].pubdate.slice(0,4)); publicationList = publication + publicationList; } } return (publicationList);}function ShowMore(){returnmax = "&retmax=20"; updateValue() $("#showmore").css("display", "none"); var element = document.getElementById("viewall"); element.classList.remove("hidelink");}//reordering articles by pub-datesetTimeout(delayloading, 2500)function delayloading() {var divElement = $('#demo').find('.article').sort(sortMe);function sortMe(a, b) { return b.className.match(/pub-date-(\d{4})/)[1] - a.className.match(/pub-date-(\d{4})/)[1];}$('#demo').append(divElement);}

Research

Research Interests

  • Opioid prescribing patterns among Foot and Ankle Orthopedic Surgeons
  • Arthroscopic assessment of the syndesmosis
  • Mapping of the fifth metatarsal morphology
  • DVT prophylaxis in foot and ankle surgery

Industry Relationships

Industry Relationships

HSS has a long history of supporting appropriate relationships with industry because they advance HSS's mission to provide the highest quality patient care, improve patient mobility, and enhance the quality of life for all, and to advance the science of orthopedic surgery, rheumatology, and their related disciplines through research and education.

Below are the healthcare industry relationships reported by Dr. Johnson as of May 27, 2024.

  • 2nd MD - Consultant
  • Altior Trauma - Ownership Interest
  • BICMD- Consultant; Ownership Interest
  • Carbon22 - Ownership Interest
  • HS2, LLC- Ownership Interest
  • HSSASCDevelopment Network, LLC- Ownership Interest
  • Joint Effort Administrative Services Organization - Ownership Interest
  • Novastep - Consultant; Royalties
  • TreaceMedical Concepts, Inc. - Consultant; Royalties

HSS and its physicians make this information available to patients and the public, thus creating a transparent environment for those who are interested in this information. Further, the HSS Conflicts of Interest and Commitment Policy prohibits physicians from collecting royalties on products they develop that are used on patients at HSS.

Patients should feel free to ask their HSS physicians questions about these relationships.

Dr. Johnson in the News

Anne Holland Johnson, MD - Sports Medicine, Foot and Ankle | HSS (2024)

References

Top Articles
Latest Posts
Article information

Author: Rueben Jacobs

Last Updated:

Views: 6332

Rating: 4.7 / 5 (57 voted)

Reviews: 80% of readers found this page helpful

Author information

Name: Rueben Jacobs

Birthday: 1999-03-14

Address: 951 Caterina Walk, Schambergerside, CA 67667-0896

Phone: +6881806848632

Job: Internal Education Planner

Hobby: Candle making, Cabaret, Poi, Gambling, Rock climbing, Wood carving, Computer programming

Introduction: My name is Rueben Jacobs, I am a cooperative, beautiful, kind, comfortable, glamorous, open, magnificent person who loves writing and wants to share my knowledge and understanding with you.