Originally Posted on December 20, 2022 Last Updated on August 17, 2024
All information on this site is shared with the intention to help. Before any source code or program is ran on a production (non-development) system it is suggested you test it and fully understand what it is doing not just what it appears it is doing. I accept no responsibility for any damage you may do with this code.
This is a compilation of some of the scripts on this site to get numbers to report to management SET NOCOUNT ON DECLARE @month INT ,@year INT ,@start_date DATETIME ,@end_date DATETIME BEGIN /* Set start and end dates to last month range */ SET @month = ( SELECT CASE WHEN…
$Random_code=rand(); echo $Random_code; Originally Posted on August 15, 2013Last Updated on October 26, 2015 All information on this site is shared with the intention to help. Before any source code or program is ran on a production (non-development) system it is suggested you test it and fully understand what it…
AutoFit() is designed to run in your Personal.xlsb with a keyboard function of Ctrl+d to select all columns and rows and then set a temporary width and height to then autofit based on all the content in the worksheet. Sub AutoFit() ‘ ‘ AutoFit Macro ‘ Resize the column width…