Blogs
VLOOKUP
Submitted by aminxl on 27 December, 2011 - 12:33Sir/s
I am trying to apply VLOOKUP formula from Anil to 19 (a to b)but it is getting only 71 not 19 but i need 19 how it possible or any other way.
a b
ANIL 71
ANIL 19
BABU 24
BABU 67
VINOD
- aminxl's blog
- 1 comment
- 3369 reads
VLOOKUP FORMULA (REQUIREMENT)
Submitted by aminxl on 27 December, 2011 - 12:15Sir
I have one prob
a b c d
GANGAWATER BOTTLE TIN POCKET
GANGAWATER TIN BOTTLE POCKET
GANGAWATER POCKET TIN BOTTLE (this is master data)
I am trying to apply VLOOKUP a-b VLOOKUP is getting only BOTTLE(b) not for TIN and POCKET i need to pickup TIN how it is possible or any other root is there.
sir any one help me.
VINOD
- aminxl's blog
- 1 comment
- 3873 reads
Excel save as .txt
Submitted by kirra on 15 December, 2011 - 05:00Hi! I need help !!!
I have a spreadsheet in Excel that I'm trying to save as .txt or .csv to be able to import the data into myob.
However, every time I save as .txt or .csv and open it in notepad it doesn't show the data separated by comma, it's separated by tab which it's not the format accepted into myob.
What's happening ?? Am I doing something wrong ?? What should I do ??
I tried to concatenate the data too but it changes the date and numbers format...
- kirra's blog
- 1 comment
- Read more
- 4018 reads
Text/Number Validation in Text Boxes
Submitted by Vishesh on 11 December, 2011 - 17:19- Vishesh's blog
- Login or register to post comments
- Read more
- 4938 reads
Tree View in Excel
Submitted by deepakjipaulson on 28 November, 2011 - 14:35Hi Nick,
Could u pls. assist with the below queries
1. When this file is closed and opened
the form control shrinks & expands- becomes steady only after a couple of scroll
2. When a particular item (parent/child) is selected
the same should get linked to a particular cell in the ctrl sheet
Thanks
Deepak Ji Paulson
- deepakjipaulson's blog
- 3 comments
- 9801 reads
How to sum hours within a certain time frame within a range of start and end times?
Submitted by GeorgeK7 on 22 November, 2011 - 05:34Hello,
- GeorgeK7's blog
- 2 comments
- Read more
- 5184 reads
Help with Compile error Next without for
Submitted by ann21236 on 21 November, 2011 - 17:23- ann21236's blog
- 1 comment
- Read more
- 7375 reads
Excel Help - VBA
Submitted by cheetahs10 on 15 November, 2011 - 08:21Help please !!! I have a excel work book with the following sheets , E-1 and Overdue.
The E-1 sheet consist of over a 1000 rows. I have a lot of formulas on that sheet to make certain items in colour and so on.
I need a formula or VBA help to get only the overdue orders on the E-1 sheet and copy them to the overdue sheet.
If the column AC is between -1 and -1000 it should copy that row to the overdue sheet.
If this formula is possible can we put in that column AC should be sorted from Highest to lowest.
- cheetahs10's blog
- 7 comments
- Read more
- 10028 reads
Solution-Copy data range to new worksheet
Submitted by Vishesh on 8 November, 2011 - 18:14Solution for problem posted on url
http://excelexperts.com/copy-range-data-new-worksheet-when-matching-data...
Please see attached sheet. Click on the button provided on the sheet.
- Vishesh's blog
- Login or register to post comments
- 4213 reads
Customised Progress Bar
Submitted by Vishesh on 29 October, 2011 - 18:23Download the attached Excel workbook to see how the customised progress bar works. To implement this in your project simply copy the form (frmProgress) and general module (modProgressBar). And then, you just need to call ShowProgress procedure like this
Call ShowProgress("Task 4", 10)
- Vishesh's blog
- 1 comment
- 9665 reads
VBA code to handle Access Imports and Query
Submitted by Vishesh on 21 October, 2011 - 11:22Public g_objConnection As ADODB.Connection Public Const gc_strDBPath As String = "C:\Test.mdb" Function blnConnectDatabase(strPath As String, strDBPass As String) As Boolean ' If blnFileExists(strPath) = False Then ' GoTo ErrH ' Exit Function ' End If Set g_objConnection = New ADODB.Connection On Error GoTo ErrH g_objConnection.Open "Provider=Microsoft.Jet.OLEDB.4.0; Data Source=" & _ strPath & ";Jet OLEDB:Database Password=" & strDBPass & ";" On Error GoTo 0 blnConnectDatabas
- Vishesh's blog
- 1 comment
- Read more
- 5925 reads
Solution to Forum Ques
Submitted by Vishesh on 17 September, 2011 - 07:59Solution for Forum Ques on url:
- Vishesh's blog
- Login or register to post comments
- 3933 reads
Rows to column solved
Submitted by Vishesh on 15 September, 2011 - 18:02Solution for problem asked in url: http://excelexperts.com/moving-data-rows-columns-depending-unique-conten...
Pls c attached sheet. I have tried to solve it using formula only (no macros as it would need more involvement).
- Vishesh's blog
- Login or register to post comments
- 4594 reads
multiply by 100
Submitted by Carmoi on 7 September, 2011 - 18:291576 tourist bed-nights multiplied by 100 liters of water per night
What would the formula look like in the formula bar?
- Carmoi's blog
- 1 comment
- 3670 reads
Filter/Find in Array
Submitted by Vishesh on 7 August, 2011 - 07:51- Vishesh's blog
- Login or register to post comments
- Read more
- 15507 reads
Count Array Dimensions
Submitted by Vishesh on 6 August, 2011 - 19:31- Vishesh's blog
- Login or register to post comments
- Read more
- 12904 reads
Create In-Cell Chart in Excel using VBA
Submitted by Vishesh on 5 August, 2011 - 08:26Paste the following code in a general module and pass the required parameters to create an chart in a cell. This code however works with Excel 2007 onwards.
- Vishesh's blog
- Login or register to post comments
- Read more
- 7969 reads
Transpose Back
Submitted by Vishesh on 3 August, 2011 - 09:00Paste the following code in any module and run the Test procedure
Sub Test() Call TransposeBack(Sheet1.Range("A3:D10"), Sheet1.Range("I1")) End Sub Sub TransposeBack(rngData As Range, rngTarget As Range) Dim rngHeader As Range Dim rngId As Range Dim rngCell As Range Dim rngDest As Range Dim lngRept As Long Set rngDest = rngTarget.Offset(1) With rngData Set rngHeader = Intersect(.Rows(1), .Rows(1).O
- Vishesh's blog
- 1 comment
- Read more
- 4132 reads
Re arrange excel data.
Submitted by prem.winsome on 2 August, 2011 - 20:21All,
I have to re arrange a huge data which is in 240*2000. iam giving the present data format below and the expected output format too. please please some body help. sos.
Present form of the data:
ID NUMBER 05-07-2010 06-07-2010 07-07-2010
55827 1 5 1
55832 2 12 0
55813 3 100 0
55826 1 0 5
55828 0 252 0
55840 3 20 0
55829 6 20 5
expected output of the data:
ID NUMBER AMOUNT DATE
55827 1 05-07-2010
55832 2 05-07-2010
55813 3 05-07-2010
55826 1 05-07-2010
55828 0 05-07-2010
55840 3 05-07-2010
55829 6 05-07-2010
55827 5 06-07-2010
55832 12 06-07-2010
- prem.winsome's blog
- 6 comments
- Read more
- 3434 reads
Code generated ComboBox (ActiveX)
Submitted by Vishesh on 1 August, 2011 - 07:11- Vishesh's blog
- Login or register to post comments
- Read more
- 6991 reads
Web Query Solution
Submitted by Vishesh on 29 July, 2011 - 21:23Solution for problem posted on url:
http://excelexperts.com/automating-pulling-data-website
Please use the attached xl sheet. Change the symbol and click the button to see
- Vishesh's blog
- 2 comments
- 8906 reads
Copy Picture from Web to Excel
Submitted by Vishesh on 19 July, 2011 - 16:50- Vishesh's blog
- 9 comments
- Read more
- 42646 reads
Array to speed up (Range vs Array)
Submitted by Vishesh on 11 July, 2011 - 16:57- Vishesh's blog
- 1 comment
- Read more
- 14320 reads
Using Array to refer to multiple sheets
Submitted by Vishesh on 10 July, 2011 - 18:41Sub DeleteMultipleSheets() Application.DisplayAlerts = False With ThisWorkbook.Worksheets(Array("Sheet2", "Sheet3")) .Delete End With Application.DisplayAlerts = True End Sub
- Vishesh's blog
- Login or register to post comments
- 7714 reads
Abbreviated Month name
Submitted by Vishesh on 10 July, 2011 - 18:18DO NOT take first 3 characters from a month name to get an abbreviated month name. This can give you duplicate results in some languages as first 3 characters of two months may be same.
I have encountered this with the Czech language.
So, use the following:
If the month is 1 i.e. January
So, to get abbreviated month name ALWAYS use
Monthname(1, True)
This will always return standard abbreviated month name.
- Vishesh's blog
- Login or register to post comments
- 7741 reads
Deleting all charts & shapes on a sheet
Submitted by Vishesh on 9 July, 2011 - 21:07sub DeleteAllCharts() Sheet1.ChartObjects.delete End Sub
sub DeleteAllShapes() Sheet1.Shapes.SelectAll Selection.Delete End Sub
- Vishesh's blog
- Login or register to post comments
- 23580 reads
Create Chart from Array values
Submitted by Vishesh on 9 July, 2011 - 20:39Sub CreateChartFromArray() Dim objCht As ChartObject With Sheet1 Set objCht = .ChartObjects.Add(10, 20, 500, 200) objCht.Chart.ChartWizard .Cells(1) objCht.Chart.SeriesCollection(1).Values = Array(56, 61, 45, 15, 30, 10) objCht.Chart.SeriesCollection(1).XValues = Array("A", "B", "C", "D", "E", "F") End With Set objCht = Nothing End Sub
- Vishesh's blog
- 2 comments
- 41676 reads
Export Excel Range to Word Document in a Tabular Format
Submitted by Vishesh on 9 July, 2011 - 20:08- Vishesh's blog
- Login or register to post comments
- Read more
- 6943 reads
Zoom Select Range
Submitted by Vishesh on 9 July, 2011 - 19:59Sub ZoomRange(rngZoom As Range) Application.Goto rngZoom ActiveWindow.Zoom = True End Sub Sub Test() Call ZoomRange(Sheet1.Range("A1:L23")) End Sub
- Vishesh's blog
- Login or register to post comments
- 10820 reads
Regular Expression to validate Email address
Submitted by Vishesh on 9 July, 2011 - 19:36Public Function blnEmailValid(ByVal strEmailAdd As String) As Boolean With CreateObject("VBScript.RegExp") .IgnoreCase = True .Global = True .Pattern = "^([a-zA-Z0-9_\-\.]+)@[a-z0-9-]+(\.[a-z0-9-]+)*(\.[a-z]{2,3})$" blnEmailValid = .Test(strEmailAdd) End With End Function Sub Test() MsgBox blnEmailValid("abc@EE.com") End Sub
- Vishesh's blog
- 1 comment
- 23715 reads
Recent comments
5 years 34 weeks ago
6 years 20 weeks ago
6 years 32 weeks ago
6 years 35 weeks ago
6 years 36 weeks ago
6 years 42 weeks ago
6 years 50 weeks ago
6 years 50 weeks ago
6 years 50 weeks ago
6 years 50 weeks ago