Category: Excel

Showing all 188 articles in this category.

2015-04-12

How to do VLOOKUP?

Macro for Vlookup Tutorial A Vlookup function search for ‘value’ in the first column of ‘table Range’ & returns a value from the same row. Syntax: =Vlookup (‘va...

2019-07-14

Get Current Date in Vba

Display Today's Date & Time in VBA Function used to displaz the current date / time is Vba.Now() This function will return the date & time in this default forma...

2019-07-17

Excel VBA Count #N/A Errors

How to count number of #N/A error in Excel? Number of occurrence of #N/A error in a column can be found by using the formula: Countif(<column>,"#N/A") Consider,...

2020-01-30

VBA Copy File to Folder

Excel VBA Macro to Copy File This page explains about 2 options to do file copy using Vba. CopyFile option from FileSystemObject VBA.Filecopy The first one has ...

2020-07-11

Intersect method (Excel)

The Intersect method is used to Returns a Range object that represents the rectangular intersection of two or more ranges. If one or more ranges from a differen...

2020-07-13

Excel TEXTJOIN Function

The TEXTJOIN function combines the text from multiple ranges and/or strings, and includes a delimiter you specify between each text value that will be combined....

2020-08-18

LinkedList in Java

Similar to Arrays in java Linked List is also a Linear data structure. In Linked List unlike arrays elements are not stored in a contiguous locations and they a...

2020-08-19

LET( ) Function in Excel

What is a LET function in Excel? The LET function in excel is used to assign the name of the calculations of the result. This allows storing of intermediate res...

2020-08-22

Queues Interface in Java

Queue Interface: The Queue Interface in Java Collections provide functionality as a Queue in the real-life, it extends the collections interface. It represents ...

2020-09-21

Database Management System

What is DBMS? DBMS stands for Database Management System which is a software used to manage databases. For Example, MySQL, Oracle, etc. are some of the popular ...

2020-12-20

Power BI - DAX

What is DAX? DAX stands for D ata A nalysis e X pressions and is the language behind Power BI. DAX is a formula expression language used in Analysis Services, P...