-
Re: AMA: Model Building Solutions
What should we do to build models that will be maintainable for those who inherit our stuff in the future? What have you seen that stands the test of time such as naming conventions, comments, "…1 -
Re: Formula to number a line item to create an order 1,2,3 etc.
I agree with previous response that we really need more information from you. I've concocted my own example situation to illustrate one approach: Suppose we want CSV exported output to look like…1 -
Re: How to get total count and standard deviation
Break the standard deviation equation into its parts and solve them bit by bit: Standard Deviation = Square Root of ( ( each X minus average X) / number of values ). I prefer to break complex line it…1 -
Re: How to find GCD of 3 numbers?
Use the modulus function MOD(x,y) to find common factors among a very big numbered list of factors. Use summary First non-blank or Last non-blank to find the least common factor and the greatest comm…4 -
Re: Script to Automate Current Date Import
I find the simplest way is to get the date from a relational database by jdbc SQL query. Each database engine has its own way of giving the current date, here are a few of the more common ones: Oracl…3

