How to automatically transfer & Save data from one sheet to another in excel

How to automatically transfer Save data from one sheet to another in excel Easily Record & Save data and transfer it to another sheet Learn how to auto save/record data entries in excel 2007 2010 2013 2016 without any formulas just using macro in excel transfer data from one excel worksheet to another automatically Record […]

SPSS Macros

Definition An SPSS macro is a function defined by the user in order to automate some task(s). SPSS Macro Syntax As discussed earlier, Python uses program blocks that start with BEGIN PROGRAM. and end with END PROGRAM.. A different kind of program block may start with DEFINE and end with !ENDDEFINE.. Between these commands you’ll find code that looks a lot like basic […]

Read and Merge Multiple Sheet Excel Workbooks

Summary Reading multiple sheet Excel workbooks into SPSS is easily done with this Custom Dialog. This tutorial demonstrates how to use it. Before You Start SPSS Read and Merge Excel Files Tool Make sure you have the SPSS Python Essentials installed. Download and install the xlrd module. If you’d like to generate some test data as done in […]

Apply Dictionary Information from Excel

Question “I have an Excel workbook whose three sheets contain data values, variable labels and value labels. How can I apply the dictionary information from these last two sheets to the SPSS dataset after importing the data values?” Option A: Python A nice and clean option is to have Python read the dictionary information from the Excel sheets. The […]

SPSS with Python – Looping over Scatterplots

The right way for looping over tables, charts and other procedures in SPSS is with Python. We’ll show how to do so on some real world examples. We’ll use alcotest.sav throughout, part of which is shown below. Note that you need to have the SPSS Python Essentials properly installed for running these examples on your own computer. Example 1: Simple Loop over Bar […]

SPSS – Set Chart Sizes Tool

This handy tool will set the exact sizes for one or many charts in the active output window. SPSS Set Chart Sizes Tool – How to Use it This tool requires SPSS version 18 or higher. For SPSS versions 14 through 17, you can use the syntax version from SPSS Set Chart Sizes with Syntax Tool. Before proceeding, […]

Concatenate (General Concept)

Concatenating two or more strings is creating a new string consisting of the characters of the first string followed by the characters of the subsequent string(s) in their original order. SPSS CONCAT Function Concatenating in SPSS is done by the CONCAT function. The most basic usage is COMPUTE A = CONCAT(B,C,D). Note that you can concatenate only strings. For concatenating numbers, […]

School Examination Result System - DW Faisalabad

School Examination Result System – MS Excel Files

In last post we have build a successful school management system, and Now we are going to introduce School Examination Result System totally built in MS Excel. In this case the following three sheet will work to present a complete result of a student. Dont mint the data on one sheet because when you get […]

Student Database Management – MS Excel Sheet

This is the first sheet that is very important for the rest of evaluation and calculation. You can not calculate anything unless the completion of this sheet. In this first sheet you will find the following important headings Admission No. Student Name Guardian Class Fee Contact Gender DOB (Date of Birth) Admission Date You can […]

School Fee Card – MS Excel Sheet

The following is the snapshot of inner side of school fee card of a student. On inner side of this card, there are two side, one have fee schedule of whole of the year and other side describes student detail (Name, Class, Guardian, and fee value) You can change it according to requirements. Right side […]