More testing

Macro testing

When you develop programs, you have to test, test, test. After this past month, I see at least 2 areas where you have to do some serious testing: 1) Test different sites/units/businesses that will be using your program. Each site or unit may have different ways of entering data or have different terminology. Even the…

Hidden Characters

You are not going crazy

“One, two, three, four, five, …, eleven, twelve. Twelve characters.” “So why does Excel len() function gives me 13?” “Maybe there’s a blank character at the front. Let’s try =left(cell, 1)…Hmmm, R.” “Maybe it’s at the end. Try =right(cell, 1)…An e, nope.” Normally, if you are working with a download from SAP, you will be dealing…

Programming Logic
|

Programming Logic

You know how programming logic can get gnarly? That happens when you need to make adjustments or additions to the program. Or you have a decision tree that is based upon time. I’ currently trying to write a program to save “beginning of the month” data to use for comparison purposes throughout the month without blowing…