Sami Valimaki won the 2023 Qatar Masters on Sunday (October 29). The European Tour golfer clinched victory after beating the likes of Jorge Campillo, Scott Jamieson and Nacho Elvira at the Doha Golf Club in Qatar.
The Finnish golfer won his second DP World Tour title after taking the lead in the tournament for the first time following a birdie on the 71st hole. It is pertinent to note that he trailed his Spanish rival for the majority of Sunday.
However, he converted the late lead to win. It is also noteworthy that this was Valimaki’s first victory on the Tour in three-and-a-half years, since the Oman Open in 2020.
2023 Qatar Masters final leaderboard
While Valimaki won the 2023 edition of the Qatar Masters, Campillo settled for the runner-up spot. Jamieson settled for a T3 finish alongside Elvira. English golfer Jordan Smith finished solo fifth, while the sixth position was shared by Santiago Tarrío and Robert MacIntyre. Sweden’s Simon Forsström finished last on the 66-man leaderboard.
Here is the final leaderboard for the Qatar Masters in Doha:
- WIN: S. Valimaki -18
- 2: J. Campillo -18
- T3: S. Jamieson -16
- T3: N. Elvira -16
- 5: J. Smith -15
- T6: S. Tarrío -14
- T6: R. MacIntyre -14
- T9: S. Crocker -13
- T9: A. Rai -13
- T9: T. Olesen -13
- T9: T. McKibbin -13
- T9: M. Wallace -13
- T9: J. Scrivener -13
- 15: T. Aiken -12
- T16: D. Hillier -11
- T16: E. Ferguson -11
- T16: P. Larrazábal -11
- T16: R. Hoejgaard -11
- T16: D. Huizing -11
- T21: K. Samooja -10
- T21: E. Molinari -10
- T21: R. Hisatsune -10
- T21: W. Besseling -10
- T21: N. Lemke -10
- T21: T. Pulkkanen -10
- T27: Y. Paul -9
- T27: A. Del Rey -9
- T27: A. Rozner -9
- T27: N. Colsaerts -9
- T27: E. Pepperell -9
- T27: Z. Lombard -9
- T27: A. Saddier -9
- T34: S. Gallacher -8
- T34: K. Johannessen -8
- T36: J. Wang -7
- T36: T. Lawrence -7
- T36: A. Sullivan -7
- T36: R. Fisher -7
- T36: R. Ramsay -7
- T36: A. Knappe -7
- T36: J. Schaper -7
- T36: R. Hoshino -7
- T44: F. Zanotti -6
- T44: K. Higa -6
- T44: J. Winther -6
- T47: M. Pavon -5
- T47: A. Cockerill -5
- T47: D. van Tonder -5
- T47: S. Söderberg -5
- T47: D. Law -5
- T47: M. Schneider -5
- 53: J. Lagergren -4
- T54: L. Nemecz -3
- T54: H. Du Plessis -3
- T56: M. Kinhult -2
- T56: D. Germishuys -2
- T56: M. Baldwin -2
- 59: G. Migliozzi -1
- 60: J. Catlin E
- T61: Á. Quirós 2
- T61: J. Morrison 2
- T63: A. Hidalgo 3
- T63: R. Cabrera-Bello 3
- T63: T. Clements 3
- 66: S. Forsström 10
After a successful Qatar Masters outing, the DP World Tour will now head to the Gary Player Golf Course in South Africa for the Nedbank Golf Challenge.
More from Sportskeeda
" modalPopup.closeOnEsc = false; modalPopup.setHeader("Why did you not like this content?"); modalPopup.setContentText(modalText); modalPopup.addCancelOkButton("Submit", resetRatingAndFeedbackForm, sendRating); modalPopup.removeCloseModalIcon(); modalPopup.disableDismissPopup(); modalPopup.open(); } else { sendRating(index); } } function sendRating() { var requestPayload = { "post_id": 1726040, "rating_value": ratingValue } if (ratingValue > 3) { requestPayload.rating_feedback_type = null; requestPayload.rating_feedback = null; } else { if (!$('input[name="drone"]:checked') || !$('input[name="drone"]:checked').value) { showErrorMessage('option'); return; } if (!$(".post-rating-feedback-note textarea") || !$(".post-rating-feedback-note textarea").value) { showErrorMessage('note'); return; } var selectedOption = $('input[name="drone"]:checked').value; var feedbackNote = $(".post-rating-feedback-note textarea").value; requestPayload.rating_feedback_type = selectedOption; requestPayload.rating_feedback = feedbackNote; } pureJSAjaxPost(addratingAPI, requestPayload, onsaveRatingSuccess, onsaveRatingFail, function() {}, true); } function resetRatingAndFeedbackForm() { var activeStars = Array.from($all('.rating span.rating-star.active')); for (var i=0; i < activeStars.length; i++) { activeStars[i].classList.remove("active"); } if ($('input[name="drone"]:checked')) { $('input[name="drone"]:checked').checked = false; } var userNote = document.querySelector(".post-rating-feedback-note textarea"); userNote.value = ''; modalPopup.close(); } function onsaveRatingSuccess() { modalPopup.close(); savePostIdInUserRatedPostsCookie(); $("#post-rating-layout").classList.add("hidden"); $("#post-rating-message").classList.remove("hidden"); window.setInterval(function showMessage() { $("#post-rating-widget").classList.add("hidden"); }, 3000); } function onsaveRatingFail() { console.error('Saving post rating failed!'); modalPopup.close(); } function savePostIdInUserRatedPostsCookie() { userRatedPostIds.push(1726040); var expiryTime = new Date(); expiryTime.setMonth(expiryTime.getMonth() + 12); // Expiry after 1 year setCookie("user_rated_post_ids", JSON.stringify(userRatedPostIds), expiryTime); } function isPostRatedByUser() { var userRatedPostIds = getCookie('user_rated_post_ids'); if (userRatedPostIds) { try { userRatedPostIds = JSON.parse(userRatedPostIds); } catch (err) { console.error(err); return false; } } else { return false; } if(userRatedPostIds.indexOf(1726040) >= 0) { return true; } else { return false; } } function getRatingCountByPostId(postId) { return new Promise(function(resolve, reject) { pureJSAjaxGet( getRatingCountBaseURL + postId + '/rating/count', function(data) { try { data = JSON.parse(data); if (data.meta_value) { resolve(data.meta_value); } reject("Failed to fetch rating count for the post:" + postId); } catch (err) { reject("Failed to fetch rating count for the post:" + postId); } }, function(err) { reject("Failed to fetch rating count for the post:" + postId); }, true); }); } function showErrorMessage(messageType) { var messageContainerId = '#' + messageType + '-error'; $(messageContainerId).classList.remove('hidden'); window.setInterval(function () { $(messageContainerId).classList.add("hidden"); }, 5000); } (function() { var callFired = false; function lazyLoadPostRating() { if (callFired) return; callFired = true; if (!isPostRatedByUser()) { getRatingCountByPostId(1726040) .then(function(ratingCount) { if (ratingCount < 10) { $("#post-rating-widget").classList.remove("hidden"); } }) .catch(function(err){ console.error(err); }); } } document.addEventListener("scroll", lazyLoadPostRating, { passive: true, once: true }); document.addEventListener("mousemove", lazyLoadPostRating, { passive: true, once: true }); document.addEventListener("touchmove", lazyLoadPostRating, { passive: true, once: true }); })();