Sadece Doğru Sayılarını Giriniz .
Yeniden Bilgi Girişi İçin Sayfayı Yenileyiniz.
Sadece Bir Sınava Göre İşlem Yapmak İstiyorsanız 1. ve 2. Teog’a Aynı Değerleri Giriniz.
/* * This code uses the Microsoft Office Excel Javascript object model to programmatically insert the * Excel Web App into a div with id=myExcelDiv. The full API is documented at * https://msdn.microsoft.com/tr-TR/library/hh315812.aspx. There you can find out how to programmatically get * values from your Excel file and how to use the rest of the object model. */ // Use this file token to reference TEOG YEP HESAPLAMA 1.xlsx in Excel’s APIs var fileToken = “SDDB2ABB62C56906F4!423/-2654102997488302348/t=0&s=0&v=!AAfUey53pY7U4AM”; // run the Excel load handler on page load if (window.attachEvent) { window.attachEvent(“onload”, loadEwaOnPageLoad); } else { window.addEventListener(“DOMContentLoaded”, loadEwaOnPageLoad, false); } function loadEwaOnPageLoad() { var props = { item: “‘yep hesaplama’!B2:J14”, uiOptions: { showGridlines: false }, interactivityOptions: { } }; Ewa.EwaControl.loadEwaAsync(fileToken, “myExcelDiv”, props, onEwaLoaded); } function onEwaLoaded(result) { /* * Add code here to interact with the embedded Excel web app. * Find out more at https://msdn.microsoft.com/tr-TR/library/hh315812.aspx. */ }