Geeks on Campus

Another amazing bgsu blog

Archive for the 'Excel' Category

File Size

Posted by jeggent on 19th February 2016

This is just a public service announcement to save network traffic and file storage space.

When you run a query to Excel from PeopleSoft it will initially be in an Excel 2010 .xls file format.  The query results that I just download had 39,181 rows and 10 columns of data.  As an xls file it had a file size of 6,733 KB.  Without making any other changes I saved the file as an Excel 2013 .xlsx file and it reduced the file size to 1,756 KB.  That is almost 75% smaller.

Thank you for your attention.  You may now return to your memes and cat videos.

Posted in Excel, PeopleSoft, PS Query | Comments Off on File Size

Excel + PS Query = Search Match

Posted by jeggent on 24th August 2012

I’m working on a project to (pop) update a field in PeopleSoft based on a file from an outside source.  The goofy part is that the file does not have a student ID (not surprising), and the first 5 characters of the SSN are masked (more surprising).  So then how do I do a one-to-one match in order to do the update?  What I’ve come up with had a couple of Excel and PS Query tips that I thought were worth sharing.  The first thing I did was create some new columns in the Excel file that is the source data.  To get just the 4 “good” characters of the SSN, I used the RIGHT function.

Equation:  =RIGHT(B4,4)
Translation:  Give me the last 4 characters from the string (text) in cell B4
Example:  ***-**-1234  = 1234

The name in the source data is listed in this format, Last (comma) (space) first (space) middle initial.  To get just the last name from that string I first used the FIND function to get which character position the “,” is in.

Equation:  =FIND(“,”,C4,1)
Translation:  This looks weird because it is a comma that I’m looking for.  The syntax is FIND then what you are looking for in quotes, what cell to look in, and what character position to start looking from.  So this equation says find the comma in cell C4 and start looking at the first character.
Example:  Student, John A = 8  (the comma is the 8th character in the string (name))

Then I use the LEFT function to get the last name.

Equation:  =LEFT(C4,G4-1)
Translation:  In this example G4 has the results of the Find function.  So this says give me the beginning (Left) characters of the string in cell C4 and stop one character before the number G4 (G4 -1).
Example:  G4 = 8 (see above)  Student, John A = Student (left 7 (8-1) characters in the name)

Next I wanted to use the first three characters in the first name.  I only wanted the first three because of the variability of how first names are recorded.  I used the MID function for this.

Equation:  =MID(C4,G4+2,3)
Translation:   MID is like LEFT and RIGHT except it lets you specify a starting point and an ending point.  This equations says: starting two characters after the comma (remember G4 holds the position of the comma and a space follows the comma, G4+2) give me the next three characters.
Example:  G4 = 8  Student, John A = Joh (three characters starting after the comma and the space)

So, those are fields that I am going to match on in PeopleSoft; the last four of the SSN, the last name, and the first three letters of the first name.

We (thankfully) have a process that allows us to upload a file to PeopleSoft to use in a query.  I uploaded this input file and used some criteria with expressions to do the matching from the file to the PEOPLE_SRCH record to get the student ID.  The last name field is a simple EQUAL TO criteria then I compare the last four of the SSN in the input file to the expression SUBSTR(B.NATIONAL_ID,-4).  The function SUBSTR typically works like the LEFT function in Excel where you specify a field and a number to get the first given number of characters in that text.  However (HOT TIP) if you use a negative number, as I did, it will work like the RIGHT function in Excel and give you the last given number of characters in that text.

For the first name comparison I used the expression SUBSTR(B.FIRST_NAME_SRCH,1,3).  When used with two number parameters SUBSTR works like Excel’s MID, so this expression gets the first (because the first number parameter is 1) three characters of the first name.

I double checked the results and using these three criteria I am able to get the student ID for those in the input file.  While you may never have this same exact situation, hopefully you’ll find parts of this post useful in other projects.

Cheers,
John

Posted in Excel, PeopleSoft, PS Query | Comments Off on Excel + PS Query = Search Match

Excel Tips and Tricks

Posted by jeggent on 29th March 2012

Microsoft Excel Tips and Tricks

I’ve created this document (link above) containing some of my favorite Microsoft Excel tips and tricks.  I’m going to give a staff training on Excel and will demonstrate these items and others.  I thought that I would share this document here for everyone’s reference.  The topics covered are:

  • Format Painter
  • Adjust Column Width
  • Copy Down Series/Formulas
  • Filter and Sort
  • Selecting Cells
  • Add Rows/Columns
  • Highlight Cells for Quick Info
  • Using Formulas
Hope you find the information useful.

 

 

 

Posted in Excel, Resource | Comments Off on Excel Tips and Tricks

Happy New Year and COUNTIF

Posted by jeggent on 29th December 2011

Happy New Year to you all!

I hope 2011 treated you well.

Well it’s over.  I’ve graduated.  Hopefully I will be able to stick with my plan of blogging more now that I am not taking classes anymore.  I’m not going to make any grand promises though.  I have a pretty bad track record at staying with blogs.

To kick things back off with this blog I going to talk about the COUNTIF() function in Excel.  This is a very useful function with which you can count of the number of occurrences of something in a range. For example the formula =COUNTIF(A1:A20,B2) will tell you how many of cells in the range of A1 to A20 are equal to the cell B2.  The problem for me has been the way the function is presented by the function wizard (or whatever it’s called) in Excel.  The wizard makes it easy to select the range to check and specify a criteria cell, however it doesn’t give you the syntax to use inequalities (i.e. > or <).

Recently I was working with a list which included students’ enrollment in the upcoming Spring term and wanted a count of how many were enrolled.  In other words, how many had enrollment greater than zero.  The formula for this value is =COUNTIF(A1:A20,”>0″). The secret here is the quote marks around the inequality.  This formula shows how many cells in the range A1 to A20 have values greater than zero.

I hope this helps.

Posted in Excel | Comments Off on Happy New Year and COUNTIF