Learn Excel Macro Training from the Best Tutors
Search in
Lesson Posted on 13/06/2017 Learn Excel Macro Training
Umasankar N.
Software Professional Trainer and Consultant with 26+ years of software design & development experience...
Compiler | Interpreter |
Convert all the code into binary format and execute. | Convert one statement at a time and execute, then Convert next statement and execute. |
After conversion, source code is not required. Binary is enough to execute the program. | As it is converting statement by statement, Always source code is required in order execute the program again and again. |
Once created binary file, execution will be fast. | As it is converting statement to binary every time, execution will be slow. |
Need to recompile if there is a modification in single statement also. In case of huge lines of code, testing the code will take more time, as we need to recompile and execute. Recompiling will take more time. | Modification can be done quickly and execute that particular statement immediately after modification. |
It required less memory. | It required more memory. |
Example : C, C++ | Example : Perl, VB, VBA |
read less
Lesson Posted on 10/06/2017 Learn Excel Macro Training
Saburudeen MA
I started my teaching carrier since i was doing my UG, as part time faculty in a computer institute....
Concatenate , one of the text functions, to join two or more text strings into one string.
The Excel Concatenate function joins together a series of supplied text strings or other values, into one combined text string.
CONCATENATE( text1, [text2], ... )
Where the text arguments are a set of one or more text strings or other values that you want to join together.
Lesson Posted on 08/06/2017 Learn Excel Macro Training
Saburudeen MA
I started my teaching carrier since i was doing my UG, as part time faculty in a computer institute....
This function calculates difference between two dates. it can show the result in days, months and years.
=datedif(start_date,end_date,"unit")
start_date | This is earliest of the two dates |
end_date | This is the most recent of the two dates |
Unit | The type of information that you want returned |
Unit | Returns |
"Y" | The number of complete years in the period. |
"M" | The number of complete months in the period. |
"D" | The number of days in the period. |
"MD" | The difference between the days in start_date and end_date. The months and years of the dates are ignored. |
"YM" | The difference between the months in start_date and end_date. The days and years of the dates are ignored |
"YD" | The difference between the days of start_date and end_date. The years of the dates are ignored. |
Start_date | End_date | Unit | Result | Notes |
21-Aug-15 | 6-Jul-17 | Y | 1 | Difference in complete years |
21-Aug-15 | 6-Jul-17 | M | 22 | Difference in complete months |
21-Aug-15 | 6-Jul-17 | D | 685 | Difference in days |
21-Aug-15 | 6-Jul-17 | MD | 15 | Difference in days, ignoring months and years |
21-Aug-15 | 6-Jul-17 | YM | 10 | Difference in months, ignoring days and years |
21-Aug-15 | 6-Jul-17 | YD | 320 | Difference in days, ignoring years |
Learn Excel Macro Training from the Best Tutors
Lesson Posted on 07/06/2017 Learn Excel Macro Training
Excel Tip: Conditional Formatting To Highlight First Value Among Duplicates.
Karthik Dale
II have 8 years of Data Analytics Experience. I have extensive experience in wide range of Excel Automation...
In Column “C”, I have product list and some of them are duplicates. My requirement is to format with background color of green for 1st found value among the duplicates. To solve this, I used formula in Conditional formatting. Check the below formula & screenshot.
Formula in Conditional Formatting is: =COUNTIFS($C$2:C2,C2)=1
Note: In the above formula if you write 2 instead of 1 then it will highlight 2nd duplicate value.
Lesson Posted on 06/06/2017 Learn Excel Macro Training
Umasankar N.
Software Professional Trainer and Consultant with 26+ years of software design & development experience...
Binding is a process of matching function calls written by the programmer to the actual code (internal or external) that implements the function. All functions called in code must be bound before the code can be executed.
Early binding is a process of binding matching function calls written by the programmer to the actual code that implements the function at compile time
Late binding is a process of binding matching function calls written by the programmer to the actual code that implements the function at run time
Early Binding benefits:
The use of Intellisense,
The use of constants,
Use of the Object Browser,
Help using F1.
Late Binding benefits:
Does not require declaring reference libraries.
Does not suffer from versioning issues.
Drawbacks of Late Binding:
Loss of Intellisense during development.
No constants.
Late binding is slower than early binding.
Lesson Posted on 06/06/2017 Learn Excel Macro Training
VBA Static Array Vs Dynamic Array
Umasankar N.
Software Professional Trainer and Consultant with 26+ years of software design & development experience...
There are two types of array in VBA, Static array and Dynamic array.
Static array:
Dynamic array:
Learn Excel Macro Training from the Best Tutors
Lesson Posted on 06/06/2017 Learn Excel Macro Training
Umasankar N.
Software Professional Trainer and Consultant with 26+ years of software design & development experience...
VBA (Excel VBA, Access VBA, Word VBA, Outllook VBA, Power Point VBA, MS Project VBA) defined two types of string data type, Fixed string and Variable string.
Fixed String:
Variable String:
read less
Lesson Posted on 30/05/2017 Learn Excel Macro Training
Excel Tip: Use Index Or Match Instead Of Vlookup Or Hlookup.
Karthik Dale
II have 8 years of Data Analytics Experience. I have extensive experience in wide range of Excel Automation...
Hi,
In today's Excel topic we will see how Index & Match function is superior than Vlookup/Hlookup.
With Index and Match, the return value need not be in the same column as the lookup column, unlike VLOOKUP where the return value has to be in the specified range. How does this matter? With VLOOKUP, you have to know the column number that contains the return value. While this sounds like no big deal, it can be cumbersome when you have a large table and have to count the number of columns. Also, if you were to add/remove a in your table, you have to recount and update the col_index_num argument. With Index and Match, no counting is required as the lookup column is different from the column that has the return value.
With Index and Match, you can specify either a row or a column in an array or even specify both. This means you can look up values both vertically and horizontally.
Index and Match can be used to lookup values in any column. Unlike VLOOKUP where you can only look up to a value in the first column in a table, Index and Match will work if your lookup value is in the first column, the last, or anywhere in between.
Index and Match offers the flexibility of making dynamic reference to the column which contains the return value. What this means is that you can add columns to your table and INDEX and MATCH will not break. On the other hand, VLOOKUP breaks if you had to add a column to the table as it makes a static reference to the table.
read lessLesson Posted on 27/05/2017 Learn Excel Macro Training
Difference between Find and Search Function in excel
Umasankar N.
Software Professional Trainer and Consultant with 26+ years of software design & development experience...
In excel there are two functions which are taking same arguments and return type.
SEARCH() --> Search a text within text, Case insensitive
FIND() --> Find a text within text, Case sensitive i.e. Search("t","Management Team") and Search("T","Management Team") both will return same position ie
Same functions can be used in excel vba macro also using WorksheetFunction.Search and WorksheetFunction.Find
read less
Learn Excel Macro Training from the Best Tutors
Lesson Posted on 28/01/2017 Learn Excel Macro Training
Vikas Chauhan
I am a freelance and providing Excel / MIS training and MIS Job Work. Having 9+yrs of experience as...
Generally, we are only use maximum "30 formulas" in our day to day routine. let's explore with below formulas and let me know which one is your favorite.
Thanks
read lessUrbanPro.com helps you to connect with the best Excel Macro Training in India. Post Your Requirement today and get connected.
Ask a Question
The best tutors for Excel Macro Training Classes are on UrbanPro
The best Tutors for Excel Macro Training Classes are on UrbanPro
Book a Free Demo