Excel Tips

Shift Between Different Excel FilesWhen you have different spreadsheets open, it’s really annoying shifting between different files because sometimes working on the wrong sheet can ruin the whole project. Using Ctrl + Tab you can shift between different files freely. 2. Create a New Shortcut MenuGenerally there are three shortcuts in the top menu, which… Continue reading Excel Tips

Extract xls file to Json

For implementing the function, need to implement excel js library function /** * file Extract function * @param {Number} fileId internal ID * @return {Object} returnDate Json Object */ function extractFileToJSON(fileId) { try { let returnData = []; let excelFile = file.load({ id: fileId }); let workbook = XLSX.read(excelFile.getContents(), {type: ‘base64’}); let firstSheetName = workbook.SheetNames[0];… Continue reading Extract xls file to Json

PROPOSAL FOR DOWNLOADING THE EXCEL FILE FROM QUOTE.

Proposal Summary  Add a new button for quote/estimate records called “Download excel”. In that button’s action, the excel file must be downloaded in excel format. The file must be named in the format “document number.xls”  Requirements  The “PROFORMA INVOICE” excel is downloaded from the quote/estimate record. The excel mockup will look like this.  Our Solution … Continue reading PROPOSAL FOR DOWNLOADING THE EXCEL FILE FROM QUOTE.

The Index Function

The INDEX function returns the value at a given location in a range or array. INDEX is a powerful and versatile function. You can use INDEX to retrieve individual values, or entire rows and columns. INDEX is frequently used together with the MATCH function. In this scenario, the MATCH function locates and feeds a position to the… Continue reading The Index Function

ADVANCED FILTER IN EXCEL

Extracting a Unique list using Excel Advanced Filter to quickly extract unique records from a data set (or in other words remove duplicates). Select the entire data set (including the headers). Go Data tab –> Sort & Filter –> Advanced. (You can also use the keyboard shortcut – Alt + A + Q). This will open the… Continue reading ADVANCED FILTER IN EXCEL

Create and edit pivot tables

Pivot tables help you summarize data, find patterns, and reorganize information. You can add pivot tables based on suggestions in Google Sheets or create them manually. After you create a pivot table, you can add and move data, add a filter, drill down to see details about a calculation, group data, and more.Examples– Summarize thousands… Continue reading Create and edit pivot tables

Excel Functions Used In CSV Import

We have to use various excel functions for importing such as Text functions ,Lookup functions ,Date and Time functions, If and related functions etc Note: In Excel we can use FORMULATEXT() function to know the functions that we have used in each cells. a) Right function is used to extracts a given number of characters… Continue reading Excel Functions Used In CSV Import

Download Excel from the custom suitelet page

/** * @NApiVersion 2.1 * @NScriptType Suitelet */ /************************************************************************************************************************* * CLIENTNAME: * AMVOP-117 * Vat Report * ********************************************************************************************************************** * Date 23/07/2021 * * Author: Jobin & Jismi IT Services LLP * Script Description : This Script is to create suitelet page for vat report * Date created : 23/07/2021 * * REVISION HISTORY * *… Continue reading Download Excel from the custom suitelet page