Count of a Weekday or Weekend between two Dates

This blog post is about an Excel formula which will return the Count of a particular Weekday or Weekend between two dates. The following formula will give us the Count of ‘Sundays’ between ’01/01/2022′ and ’31/12/2022′. =SUMPRODUCT(–(WEEKDAY(SEQUENCE(“31-12-2022”-“01-01-2022″+1,,”01-01-2022”))=1)) Let’s see how this formula works. Explanation of the Formula The SEQUENCE function will generate a list of … Read more

Convert PDF to Excel using Power Query

Excel with Microsoft 365 has a PDF connector which enables us to extract data from PDF files. The beauty of this method is that the extracted data will automatically update for the changes in the source data. Let’s see how to extract the Tables in a PDF file using Power Query in Excel. Following is … Read more