Get Even More Visitors To Your Blog, Upgrade To A Business Listing >>

Blog Directory  >  Education Blogs  >  Languages Blogs  >  Excel VBA Tips languages Blog  > 

Excel Vba Tips Blog


excelvbatipsforbeginners.blogspot.in
This is a blog regarding excel and VBA tips. It contains posts on excel formulas, quick tips and VBA code on various topics.
IN-CELL PROGRESS METER IN EXCEL
2018-09-21 14:57
IN-CELL PROGRESS METER IN EXCELColumn A - Employee NameColumn B - TargetColumn C - Achieved ScoreColumn D - Achieved % ( Derived Field )Step 1: Write formulaPut the below formula in cell D2… Read More
COUNT DISTINCT VALUES USING PIVOT TABLE
2017-12-17 10:51
I have a column "Product Category" in my dataset having 23 entries including duplicates.I want to know the distinct number of categories. There are different ways of doing it. In this post… Read More
2017-12-10 14:07
This post is dedicated on handling the dates in VBA by using some in-built functions. I have explained some functions in short, used to work with dates.Assigning a datevalue to a variable.My… Read More
2016-09-15 14:58
I explored a lot on internet for a customized formula which can reverse the digits in a cell and found many solutions using VBA user defined function or by installing add-in but couldn't fin… Read More
2012-09-14 13:06
Use below codes to restrict the users to move your userform.1) Declare variablesPrivate m_sngAnchorLeft As SinglePrivate m_sngAnchorTop As SinglePrivate m_blnSetAnchor As Boolean2) Past… Read More
2012-09-14 12:59
To disable the close(X) button of userform paste the below code on the QueryClose event of your userform.Private Sub UserForm_QueryClose(Cancel As Integer, CloseMode As Integer)If CloseMode… Read More
CREATE FUNNEL CHART USING FORMULA
2012-08-19 12:48
Following are the Steps:1. Sort your data in Descending Order2. Enter formula in C2  =REPT("|",B2/50) and drag it down3.Choose the color that you want Read More
MOVING TITLE FOR USERFORM
2012-08-14 10:31
Click on the video to see how it will look like.Follow the below steps to create a moving title for your userform:1. Launch Microsoft Excel2. Press ALT+F11 to open Visual Basic Editor3. Inse… Read More
WRITE YOUR TEXT IN SHAPES USING VBA
2012-08-11 16:50
Select a cell (where you want to get the output). Paste the below code in the module and run it.Sub DrawName()Const pi = 3.1416Dim i As IntegerDim x As Single, y As SingleDim z As SingleDim… Read More
CHANGE COMMENT BOX STYLE USING VBA
2012-08-11 16:48
Paste the below code in the module and run itSub Comments_Style()Dim MyComments As CommentDim LArea As LongFor Each MyComments In ActiveSheet.CommentsWith MyComments.Shape.AutoShapeType = ms… Read More
2012-08-11 16:46
Name Value msoShape16pointStar 94 msoShape24pointStar 95 msoShape32pointStar 96 msoShape4pointStar 91 msoShape5pointStar 92 msoShape8pointStar 93 msoShapeActionButtonBackorPrevious 1… Read More
CHANGE TO SENTENCE CASE
2012-08-05 07:00
Formula in B2:  =UPPER(LEFT(A2,1))&MID(LOWER(A2),2,999) and drag it down.Did it help you? Please post your valuable comment. Thanks!! Read More
SPLIT CELL CHARACTERS USING VBA
2012-08-04 08:22
Paste the below code in the module, select the cell you want to split and run the code.Sub split_cell_char()Dim i As IntegerFor i = 1 To Len(ActiveCell)ActiveCell.Offset(0, i) = VBA.Mid(Acti… Read More
2012-08-03 14:27
Paste the below UDF(User Defined Function) in module and use function.Function Name  "=sum_cell_values"Function sum_cell_values(rng As Range)Dim i As Integerj = 0For i = 1 To Len(rng)j… Read More
2012-08-03 13:05
Array formula in B2:=SUM(IF(FREQUENCY($A$2:$A$10,$A$2:$A$10),$A$2:$A$10))with CSEIs this post helpful to you? Please post your valuable comment. Thanks! Read More
CREATE DYNAMIC DATA VALIDATION LIST
2012-07-31 08:10
Say your data is in the range A2:A6 and you want to create a data validation list using this data  in C1. It is easy to do. You will go to Data-- Data Validation--List--Select Range--Pr… Read More

Share the post

Excel VBA Tips

×

Subscribe to Excel Vba Tips

Get updates delivered right to your inbox!

Thank you for your subscription

×