Google Photos does not provide unlimited space for photo uploads by default. User has to choose the options explained below during upload or later as explained below. Google Storage Limits & How to extend it? Google provides storage space in its cloud with these two services. Google Drive + Photos […]
Clear Excel VBA Immediate Window – Macro Code
Clear Excel VBA Immediate Window Manually There is no explicit option to clear immediate window. Just select all content in Immediate window using control + A, then press delete button. This is the only option to clear the data in this window. Excel VBA Code to Clear Immediate Window As […]
Google Photos – Shared Album Link – URL Not working
Google Photos – Shared Album Link not working You created an album & sharing it with Your friend using the URL or by directly adding them from contacts. But, Your friend gets this error message when they open the url link. “The link has been deleted or the URL is […]
Vba Check if Sheet Exists – If not Create
VBA Code to Check if Sheet with Name exists? This Excel vba code will check if sheet with a specific name exists in the workbook. As per Microsoft specifications, You can add as many number of sheets depending on the limits of Your computer’s memory. So, this loop will check […]
Rearrange Excel Sheets in Custom or Alphabetic Order with VBA
Custom Order or Alphabetical Order This page has VBA code that can arrange worksheets in a Excel file in: Custom Order as per user preference Alphabetic Order of the Sheet Names Lets get the code. VBA Code – Arrange Sheets in Custom Order To make the below code work, You […]
Excel VBA Comment Multiple Lines – Easy Menu Option
In Excel VBA comment multiple lines of code using this toolbar option. This can comment a block of selected lines of code or uncomment them.
These Online Notepads eases Your Job a lot – Wanna know how?
How to Store Notepad & Sticky Notes Online? We use Windows Notepad App or Sticky notes app so much extensively. It is easy to store easy reference text data in these apps. As time passes, these notes gets added a lot & we struggle to manage them properly. It is […]
Facebook Hacker Cup Details
What is actually Facebook hacker cup? The Facebook Hacker Cup is an annual worldwide programming competition. Hackers from all over the globe, compete against each other for fame, fortune, glory & sometimes cash at the coveted Hacker Cup. It started in 2011; the Hacker Cup is Facebook’s annual worldwide programming […]
Free Anagram Generator – Name Combinations Maker
Here is Anagram generator free service tool in this page to solve your anagram puzzle. It gives all possible combination of words with same letters.
Excel VBA Hyperlink Follow – URL within Macro
How to Click Hyperlink in Excel with VBA Macro? There are 2 methods available to click a hyperlink in Excel. Both the methods do open the URL in the default browser or open the corresponding file in the default application. Here is the code demonstrates both methods. Sub follow_hyperlink() ‘Follow […]