$$Excel-Macros$$ Re: combining many excel files into one excel sheet

2009-06-21 Thread Alokeshwar Tiwary
try attached   _ "There are known knowns. These are things we know that we know. There are known unknowns. That is to say, there are things that we know we don't know. But there are also unknown unkno

$$Excel-Macros$$ Excel Macro to populate a text field in an internet explorer window

2009-07-23 Thread Alokeshwar Tiwary
ately appreciated.   Thanks & Regards, Alokeshwar Tiwary +1 617 337 2256_"There are known knowns. These are things we know that we know. There are known unknowns. That is to say, there are things t

Re: $$Excel-Macros$$ Send Email from Excel to Multiple Addresses

2009-12-20 Thread Alokeshwar Tiwary
  Add following line after .To line:   .Cc = "addre...@email.com, addre...@email.com, addre...@email.com" You can replace contents after = wih reference to cells containing cc addresses. .Cc = ActiveSheet.Range("f" & i).Text & ", " & ActiveSheet.Range("g" & i).Text   You should also replace For i

Re: $$Excel-Macros$$ How to restrict duplication in Excel

2009-12-27 Thread Alokeshwar Tiwary
Use following formulat in data validation: =COUNTIF($E:$E,$E1)=1   Please see attached for example. Regards Alokeshwar 09891442001 _ "There are known knowns. These are things we know that we know. Ther

Re: $$Excel-Macros$$ range method not working

2009-12-27 Thread Alokeshwar Tiwary
Add following code before the line: Worksheets("Ratios").Select     (to select the sheet before you select the range in the sheet) New code should look like: Private Sub CommandButton3_Click() Worksheets("Ratios").Select Worksheets("Ratios").Range(Cells(3, 25), Cells(3, 26)).Select End Sub

Re: $$Excel-Macros$$ range method not working

2009-12-27 Thread Alokeshwar Tiwary
 Try this: Sub test1() Dim i As Integer, str1 As String, str2 As String For i = 2 To 4 str1 = "Sheet1!C" & i & ":D" & i'Replace Sheet1 and Sheet2 with the sheet names in your workbook str2 = "Sheet2!C" & i & ":D" & i'Replace "!C" and "!D" with column names.  Range(str1).Copy Range(str2)

Re: $$Excel-Macros$$ Loop with If(and(

2009-12-29 Thread Alokeshwar Tiwary
PFA the workbook with the solution. Regards Alokeshwar 09891442001 _ "There are known knowns. These are things we know that we know. There are known unknowns. That is to say, there are things that we

Re: $$Excel-Macros$$ Export from word to excel

2010-01-02 Thread Alokeshwar Tiwary
Ashish, It's absoulutely possible. Can you attach a few word files for example. Regards, Alokeshwar 09891442001   _ "There are known knowns. These are things we know that we know. There are known unk

Re: $$Excel-Macros$$ Help in formula - Trace Dependents

2010-01-03 Thread Alokeshwar Tiwary
Consider using INDIRECT to refer to ranges. You can also use ADDRESS with ROW and COLUMN functions with INDIRECT. Regards, Alokeshwar 9891442001 _ "There are known knowns. These are things we know t

Re: $$Excel-Macros$$ Export from word to excel

2010-01-05 Thread Alokeshwar Tiwary
gs we know that we know. There are known unknowns. That is to say, there are things that we know we don't know. But there are also unknown unknowns. There are things we don't know we don't know." ________ From: Alokeshwar Tiwary To: excel-macros@goog

Re: $$Excel-Macros$$ Export from word to excel

2010-01-06 Thread Alokeshwar Tiwary
additional trouble for forgetting to mention the >Excel Version I was using. > >Thanks a lot. Many Many Many times over. You are a lifesaver :) > > >Thanks once again. > > >Ashish > >On Wed, Jan 6, 2010 at 4:52 AM, Alokeshwar Tiwary < >alokeshwar.tiw...@yahoo.

Re: $$Excel-Macros$$ Export from word to excel

2010-01-09 Thread Alokeshwar Tiwary
know. But there are also unknown unknowns. There are things we don't know we don't know." ____ From: Zilla To: Alokeshwar Tiwary Sent: Sun, 10 January, 2010 2:51:33 AM Subject: Re: $$Excel-Macros$$ Export from word to excel I like the the first ex

Re: $$Excel-Macros$$ Vlookup-Dates

2010-01-10 Thread Alokeshwar Tiwary
Please share the workbook? _ "There are known knowns. These are things we know that we know. There are known unknowns. That is to say, there are things that we know we don't know. But there are also

Re: $$Excel-Macros$$ Export from word to excel

2010-01-11 Thread Alokeshwar Tiwary
ubject: Re: $$Excel-Macros$$ Export from word to excel thanks a lot  for the solution can u please make it for notepad files too On Sun, Jan 10, 2010 at 3:02 PM, Alokeshwar Tiwary wrote: Criteria or parameters aren't necessory but it may not be extracting data in a useful format. >I h

Re: $$Excel-Macros$$ Vlookup-Dates

2010-01-11 Thread Alokeshwar Tiwary
 you can use following function to get date range instead of a vlookup: Function GetDateRange(Day1 As Date, CurrentDay As Date) As String Dim i As Integer, LeftRange As Date, RightRange As Date If Day1 > CurrentDay Then     DateRange = "#INVALID#"     Exit Function End If i = Application.Workshee

Re: $$Excel-Macros$$ help..

2010-01-30 Thread Alokeshwar Tiwary
I believe below is what you should use: Range("ca5") = "abc" & Range("n" & i) Regards, Alokeshwar +1 617 710 8441  _ "There are known knowns. These are things we know that we know. There are known unk

Re: $$Excel-Macros$$ Copy Excel Data from sheet and fill in already opened internetexplorer and submit and repeat for 10 similar postings

2010-01-30 Thread Alokeshwar Tiwary
I would suggest that you use JitBit macro recorder for this purpose. www.jitbit.com Regards, Alokeshwar +1 617 710 8441  _ "There are known knowns. These are things we know that we know. There are know

Re: $$Excel-Macros$$ Copy Excel Data from sheet and fill in already opened internetexplorer and submit and repeat for 10 similar postings

2010-02-01 Thread Alokeshwar Tiwary
62, India   On 1/30/10, Alokeshwar Tiwary wrote: I would suggest that you use JitBit macro recorder for this purpose. >www.jitbit.com > >Regards, >Alokeshwar >+1 617 710 8441  > >_ >

Re: $$Excel-Macros$$ minimize a userform

2010-02-04 Thread Alokeshwar Tiwary
PFA from vbaexpress.com Regards, Alokeshwar +1 617 710 8441 _ "There are known knowns. These are things we know that we know. There are known unknowns. That is to say, there are things that we know w

Re: $$Excel-Macros$$ Generate report from Access Database

2010-02-07 Thread Alokeshwar Tiwary
1. Start Pivot Table Wizard and select external data source. 2. You can also use DAO to query data from database: Example procedure is as mentioned below. Remember add reference to DAO in VBA reference library. Function GetDBData() Dim db As Database, rs As Recordset Set db = OpenDatabase(Curren

$$Excel-Macros$$ Good to Share - The Law of the Garb age Truck™

2010-03-21 Thread Alokeshwar Tiwary
The Law of the Garbage Truck™ by David J. Pollay How often do you let other people’s nonsense change your mood? Do you let a bad driver, rude waiter, curt boss, or an insensitive employee ruin your day? Unless you’re the Terminator, you’re probably set back on your heels. However, the mark of yo

Please ignore - Re: $$Excel-Macros$$ Good to Share - The Law of the Garbage Truck™

2010-03-21 Thread Alokeshwar Tiwary
that we know. There are known unknowns. That is to say, there are things that we know we don't know. But there are also unknown unknowns. There are things we don't know we don't know." ________ From: Alokeshwar Tiwary To: alokeshwar.tiw...@yaho

$$Excel-Macros$$ Re: creating powerpoint presentation

2008-08-27 Thread Alokeshwar Tiwary
Opening Power Point is easy:   Sub OpenPPT() Application.ActivateMicrosoftApp xlMicrosoftPowerPoint End Sub _ "There are known knowns. These are things we know that we know. There are known unknowns.

$$Excel-Macros$$ Re: creating powerpoint presentation

2008-08-30 Thread Alokeshwar Tiwary
ion To: "MS Excel & VBA Macros" Date: Friday, 29 August, 2008, 1:15 PM Thanks for your help. i have one more question... i just want to browse folders and select one excle file, without any predefined file name in program itself. Thanks, GK On Aug 28, 5:34 am, Alokeshwar Tiwary <[

$$Excel-Macros$$ Re: Code to copy paste data from different files

2008-08-31 Thread Alokeshwar Tiwary
Ravi, here is a tip from J. Walk   VBA does not include a method to retrieve a value from a closed file. You can, however, take advantage of Excel's ability to work with linked files. This tip contains a VBA function that retrieves a value from a closed workbook. It does by calling an XLM macro.

$$Excel-Macros$$ Re: Importing data in one spreadsheet into a certain area on another spreadsheet

2008-09-02 Thread Alokeshwar Tiwary
Att. [EMAIL PROTECTED] Can you please send the files for example? Regarding the file name change issue you can modify following code to variable FileName whereever your want.   Sub GetFileName() Dim FileName As String Dim Msg As String FileName = Application.GetOpenFilename Msg = "You selected: "

$$Excel-Macros$$ Re: Lotus Notes * Delivery Failure*

2008-09-02 Thread Alokeshwar Tiwary
why do u need a macro for the same? simply set a filter to delete all such messages.. _ "There are known knowns. These are things we know that we know. There are known unknowns. That is to say, ther

$$Excel-Macros$$ Re: Lotus Notes * Delivery Failure*

2008-09-02 Thread Alokeshwar Tiwary
why do u need a macro for the same? simply set a filter to delete all such messages.. _ "There are known knowns. These are things we know that we know. There are known unknowns. That is to say, ther

$$Excel-Macros$$ Re: Controlling Excel Automatic Calculation???

2008-09-04 Thread Alokeshwar Tiwary
Att. [EMAIL PROTECTED]   Place below code in your sheets personal module:   Private Sub Worksheet_Change(ByVal Target As Range) Dim Msg As String If Application.Calculation = xlCalculationManual Then Msg = MsgBox("Sheet has changed. Do you want to recalculate?", vbYesNo + vbDefaultButton1) If Msg

$$Excel-Macros$$ Re: merging to different sheets

2008-09-04 Thread Alokeshwar Tiwary
U need to write the macro in a compile sheet in followint sequence: 1. Have two lists in compiler sheet with names of those 2 x 300 books in two columns together (say A1 for datas1, B1 for datag1, A2 for datas2, B2 for datag2...)   2.  Write a for next loop to pick values for those files:   For

$$Excel-Macros$$ Re: Make a cell a control that launches macro when clicked

2008-09-11 Thread Alokeshwar Tiwary
Place this code in private module of the worksheet:   Private Sub Worksheet_BeforeDoubleClick(ByVal Target As Range, Cancel As Boolean) If ActiveCell.Address = "$C$3" Then Cancel = True Call MyMacro End If End Sub   As soon as user double clicks the Cell C3, it cancels the click action and call

$$Excel-Macros$$ Re: Make a cell a control that launches macro whenclicked

2008-09-13 Thread Alokeshwar Tiwary
4004308 New * Email ID: [EMAIL PROTECTED] From: excel-macros@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Alokeshwar Tiwary Sent: Friday, September 12, 2008 4:17 AM To: excel-macros@googlegroups.com Subject: $$Excel-Macros$$ Re: Make a cell a control that launches macro whenclicked  

$$Excel-Macros$$ Re: listbox in excel that is an option for sql query

2008-09-26 Thread Alokeshwar Tiwary
 Checkout indirect function in excel help. _ "There are known knowns. These are things we know that we know. There are known unknowns. That is to say, there are things that we know we don't know. But

$$Excel-Macros$$ Re: Macor for formatting.

2008-10-22 Thread alokeshwar . tiwary
Sub Macro1() Dim sht For sht = 1 To Sheets.Count     Sheets(sht).Activate     ActiveWindow.Zoom = 100     Cells.Select     With Selection.Font     .Name = "Arial"     .Size = 9     End With     Range("A1").Select Next sht End Sub   _

$$Excel-Macros$$ Re: Macor for formatting.

2008-10-23 Thread alokeshwar . tiwary
Attention Vinu   Here is the code: Sub Macro1() Dim sht For sht = 1 To Sheets.Count     Sheets(sht).Activate     ActiveWindow.Zoom = 100     Cells.Select     With Selection.Font     .Name = "Arial"     .Size = 9     End With     Range("A1").Select Next sht Sheets(1).Activate End Sub   ___

$$Excel-Macros$$ Re: How to findout Duplicate items

2008-10-31 Thread alokeshwar . tiwary
Use below code. Sub DupFinder() Dim r As Range, t As Range Cells(1, ActiveCell.Column).Select Range(Selection, Selection.End(xlDown)).Select Set t = Selection For Each r In t v = r.Value If Application.WorksheetFunction.CountIf(t, v) > 1 Then r.Interior.ColorIndex = 3 End If Next End Sub Select

$$Excel-Macros$$ Re: Help required for a week wise report

2008-11-02 Thread alokeshwar . tiwary
There is a simple formula for column F: =IF((B3-TODAY())/7>1,(B3-TODAY())/7,ROUNDUP((B3-TODAY())/7,0)) Then custom format the range with this code "Payment due in "0" weeks";"Overdue as of today"   _

$$Excel-Macros$$ Re: How to findout Duplicate items

2008-11-03 Thread alokeshwar . tiwary
 Use CountIf function. see attached file for example. Any cells having value more than 1 in column B has a duplicate record on its left. _ "There are known knowns. These are things we know that we kno

$$Excel-Macros$$ Re: How to lock the cells.

2008-11-05 Thread alokeshwar . tiwary
right click on cell and go to Format -> Protection tab.. if locked box is checked, cell will locked after protecting the sheet. If hidden box is checked, cell formula will be hidden (i.e. will not show in formula bar) after protecting the sheet. To lock a range, select your range and then go to 

$$Excel-Macros$$ Re: Need help for the below issue.

2008-11-05 Thread alokeshwar . tiwary
Use below functions: For date: =TEXT(A1,"mm/dd/") For time: =TEXT(A1,"hh:mm:ss AM/PM")  A1 is the cell where the data (date and time) is stored. _ "There are known knowns. These are things we kn

$$Excel-Macros$$ Re: Use of Array Formula or other method to create deduplicated list of text values?

2008-11-06 Thread alokeshwar . tiwary
Dave, see attached workbook. May be this will help.   _ "There are known knowns. These are things we know that we know. There are known unknowns. That is to say, there are things that we know we don't

$$Excel-Macros$$ Re: Need help creating a count macro

2008-11-07 Thread alokeshwar . tiwary
 =Countif(B:B,A2) _ "There are known knowns. These are things we know that we know. There are known unknowns. That is to say, there are things that we know we don't know. But there are also unknown u

$$Excel-Macros$$ Re: Macro for Login Page

2008-11-11 Thread Alokeshwar Tiwary
Go to Workbook's private module and type this code in Open Workbook event:   If Environ("UserName") <> "USERNAME HERE" Then 'your code here ThisWorkbook.close ' if you want to close the workbook End If

$$Excel-Macros$$ Re: Nested IF statements

2008-11-15 Thread Alokeshwar Tiwary
I am not sure what the problem is. I am using excel 2003 and its working fine.. can you forward your workbook as attachment. _ "There are known knowns. These are things we know that we know. There ar

$$Excel-Macros$$ Re: Drop down / combo list in a cell

2008-11-20 Thread Alokeshwar Tiwary
Go to Data -> Validation - > and select validation criteria as allow list... _ "There are known knowns. These are things we know that we know. There are known unknowns. That is to say, there are things

$$Excel-Macros$$ Re: EXCEL / VBA BOOK REQU

2008-11-26 Thread Alokeshwar Tiwary
Try this link: http://www.orbitfiles.com/download/id2177479820.html   _ "There are known knowns. These are things we know that we know. There are known unknowns. That is to say, there are things that w

Re: Fw: $$Excel-Macros$$ Re: Fwd: Abt macro

2008-11-27 Thread Alokeshwar Tiwary
Lets stop this topic and continue sharing excel-vba tips, problems and solutions. _ "There are known knowns. These are things we know that we know. There are known unknowns. That is to say, there are

$$Excel-Macros$$ Re: Using VBA Macro as an Alternate to Conditional Array Formula

2008-12-04 Thread Alokeshwar Tiwary
Naveen Kumar M N     Transport Supervisor(HP) 91-08-99728 10886     Email :[EMAIL PROTECTED]  Best Wishes-Karunaada Kuvara --- On Tue, 12/2/08, Alokeshwar Tiwary <[EMAIL PROTECTED]> wrote: From: Alokeshwar Tiwary <[EMAIL PROTECTED]> Subject: $$Excel-Macros$$ Using VBA Macro as an Altern

$$Excel-Macros$$ Re: Window Selection based on name pattern

2008-12-15 Thread Alokeshwar Tiwary
Sub test() For r = 1 To Workbooks.Count If Right(Workbooks(r).Name, 12) = "practice.xls" Then Workbooks(r).Activate Exit For End If Next r End Sub   _ "There are known knowns. These are things we know t

$$Excel-Macros$$ Re: Window Selection based on name pattern

2008-12-15 Thread Alokeshwar Tiwary
Sub test() For r = 1 To Workbooks.Count If Right(Workbooks(r).Name, 12) = "practice.xls" Then Workbooks(r).Activate Exit For End If Next r End Sub   _ "There are known knowns. These are things we know t

$$Excel-Macros$$ Re: How do I create formula to return row number of search result...

2008-12-24 Thread Alokeshwar Tiwary
 Try below function Function FindX(ValueX) 'Row Number FindX = Columns("A:A").Find(What:=ValueX).Row 'Column Number 'FindX = Columns("A:A").Find(What:=ValueX).Column 'Cell Address 'FindX = Columns("A:A").Find(What:=ValueX).Address End Function _

$$Excel-Macros$$ Re: How do I create formula to return row number of search result...

2008-12-24 Thread Alokeshwar Tiwary
or this one: Function FindX(RangeX As Range, ValueX As String) 'Row Number FindX = RangeX.Find(What:=ValueX).Row End Function   _ "There are known knowns. These are things we know that we know. There a

$$Excel-Macros$$ UserFrom to save data in excel database

2008-12-27 Thread Alokeshwar Tiwary
I want to create a userform to save data in a closed excel workbook using database. The closed workbook will have many sheets and I want the VBA to select worksheet based on windows NT user ids. Worksheets' names will be same as username. Any suggestions? Thanks Alokeshwar ___

$$Excel-Macros$$ Re: Validating a column of numbers against another worksheet

2009-01-05 Thread Alokeshwar Tiwary
go to tools - > options -> calculation and and turn Manual calculation on.   _ "There are known knowns. These are things we know that we know. There are known unknowns. That is to say, there are things

$$Excel-Macros$$ Re: Validating a column of numbers against another worksheet

2009-01-05 Thread Alokeshwar Tiwary
Is there a way to retrieve domain name using vba...? I need this to make sure that my vba tool will run only within the network of my compay. Thanks and Regards, Alokeshwar Tiwary _ "There are

$$Excel-Macros$$ Retrieving domain name using VBA

2009-01-05 Thread Alokeshwar Tiwary
Is there a way to retrieve domain name using vba...? I need this to make sure that my vba tool will run only within the network of my compay. Thanks and Regards, Alokeshwar Tiwary   _ "Ther

$$Excel-Macros$$ Re: Retrieving domain name using VBA

2009-01-06 Thread Alokeshwar Tiwary
omain name using VBA Hi Alok, Try this command : Environ("UserDomain") Cheers, Lohith On Jan 6, 10:16 am, Alokeshwar Tiwary wrote: > Is there a way to retrieve domain name using vba...? I need this to make sure > that my vba tool will run only within the network of my compa

$$Excel-Macros$$ Re: Obtaining_VBA_MACRO_PASSWORD

2009-01-10 Thread Alokeshwar Tiwary
Ayush, please find the find attached file.. let me know if you need to crack vba password for a word doc   _ "There are known knowns. These are things we know that we know. There are known unknowns. T

$$Excel-Macros$$ Re: Tab organization in large spreadsheets

2009-02-02 Thread Alokeshwar Tiwary
See attached, this might help you. _ "There are known knowns. These are things we know that we know. There are known unknowns. That is to say, there are things that we know we don't know. But there a

$$Excel-Macros$$ Run-time error '-2147352571 (80020005) - Type Mismatch

2009-02-08 Thread Alokeshwar Tiwary
Hi, I am trying to populate an excel userform combo box from a table in access database using DAO. When I pass arguments as following: AddItemtoDropDownList Me.cboUserName, "LookupLists", "UserId" VBA returns following error:  === Run-time error '-2147352571 (80020005) Type M

$$Excel-Macros$$ Re: Run-time error '-2147352571 (80020005) - Type Mismatch

2009-02-09 Thread Alokeshwar Tiwary
ow we don't know. But there are also unknown unknowns. There are things we don't know we don't know." ________ From: Alokeshwar Tiwary To: excel-macros@googlegroups.com Sent: Monday, 9 February, 2009 5:52:54 AM Subject: $$Excel-Macros$$ Run-time err

$$Excel-Macros$$ Re: Run-time error '-2147352571 (80020005) - Type Mismatch

2009-02-09 Thread Alokeshwar Tiwary
7;-2147352571 (80020005) - Type Mismatch So why you don't want to share with group mates??? - Original Message - From: Alokeshwar Tiwary To: excel-macros@googlegroups.com Sent: Monday, February 09, 2009 2:46 PM Subject: $$Excel-Macros$$ Re: Run-time error '-21

$$Excel-Macros$$ Re: FIND / (RELACE) data in a hidden HYPERLINK

2009-02-11 Thread Alokeshwar Tiwary
Go to Tools -> Options - > View Tab Select checkbox Formula in Window Options. Click OK   _ "There are known knowns. These are things we know that we know. There are known unknowns. That is to say, th

Re: (Posting denied) $$Excel-Macros$$ How to summarize worksheet Data

2009-03-03 Thread Alokeshwar Tiwary
I received this email from some so-called moderator.. the email was a total non-sense.. i didn't spam the group, I just replied to a member's query. Anyone who uses excel could understand the email and the attachment...  Here is the content of the excel sheet I attached. The excel sheet contai

$$Excel-Macros$$ Re: Automating the MIS

2009-03-05 Thread Alokeshwar Tiwary
Could you share the workbooks your team members are using?   _ "There are known knowns. These are things we know that we know. There are known unknowns. That is to say, there are things that we know we

$$Excel-Macros$$ Re: Compare two columns!!

2009-03-10 Thread Alokeshwar Tiwary
See attached. I have attached a macro that might help you. _ "There are known knowns. These are things we know that we know. There are known unknowns. That is to say, there are things that we know we d

$$Excel-Macros$$ Re: charts to powerpoint

2009-03-11 Thread Alokeshwar Tiwary
gs that we know we don't know. But there are also unknown unknowns. There are things we don't know we don't know." From: shay shay To: Alokeshwar Tiwary Sent: Wednesday, 11 March, 2009 8:32:02 PM Subject: Re: $$Excel-Macros$$ Re: charts

$$Excel-Macros$$ Left VLookup

2009-03-16 Thread Alokeshwar Tiwary
Just thought of sharing this function with the group. I created it to elaminate lengthy match index formula from my reports _ "There are known knowns. These are things we know that we know. There are k

$$Excel-Macros$$ Re: Left VLookup

2009-03-18 Thread Alokeshwar Tiwary
. It is a good function but proper usage is not clear from ur example.   On Tue, Mar 17, 2009 at 7:43 AM, Alokeshwar Tiwary wrote: Just thought of sharing this function with the group. I created it to elaminate

$$Excel-Macros$$ Re: MS Excel -Animation

2009-03-29 Thread Alokeshwar Tiwary
$ Re: MS Excel -Animation Hi Alokeshwar,   Whtat does [F17] mean here? what is it for? On Mar 29, 1:52 pm, Alokeshwar Tiwary wrote: > Though it looks like flash or something but its not. There are several > picture in each sheet which become visible and invisible one after another. >

$$Excel-Macros$$ Re: Macros in Outlook

2009-04-09 Thread Alokeshwar Tiwary
See below. this freeware clicks yes automatically:http://www.snapfiles.com/get/clickyes.html _ "There are known knowns. These are things we know that we know. There are known unknowns. That is to say

$$Excel-Macros$$ Re: Find the first empty row

2009-05-04 Thread Alokeshwar Tiwary
Sub SelectFirstEmptyRow() Dim r As Long r = Application.WorksheetFunction.CountA(Range("A:A")) Cells(r, 1).Select End Sub _ "There are known knowns. These are things we know that we know. There are kn

[no subject]

2009-05-16 Thread Alokeshwar Tiwary
Hi All, Is there a way to change color of a message box back ground and font? Please see attached. I want the OK message box to be in same color as the userform.   Thanks in anticipation Alokeshwar  

$$Excel-Macros$$ Changing Back and Font Color of a Message Box

2009-05-16 Thread Alokeshwar Tiwary
x27;t know. But there are also unknown unknowns. There are things we don't know we don't know." - Forwarded Message ---- From: Alokeshwar Tiwary To: excel-macros@googlegroups.com Sent: Sunday, 17 May, 2009 2:38:40 AM Subject: Hi All, Is there a way to change color of a me

$$Excel-Macros$$ Run Time Error 3050 - Could Not Lock File - ERROR?

2009-05-19 Thread Alokeshwar Tiwary
Hi All, Does anyone know why this error occurs? I am using DAO in a Excel Userform to save data in MS Access. Approx 40 users are using the userform and its working fine however sometimes it shows following error message and crashes: Run Time Error 3050 - Could Not Lock File What could be the r

$$Excel-Macros$$ Re: UserForms in excel via VBA

2009-05-30 Thread Alokeshwar Tiwary
http://www.contextures.com/xlUserForm01.html   _ "There are known knowns. These are things we know that we know. There are known unknowns. That is to say, there are things that we know we don't know. B

$$Excel-Macros$$ Re: remove module - password is password

2009-06-06 Thread Alokeshwar Tiwary
e are things that we know we don't know. But there are also unknown unknowns. There are things we don't know we don't know." ________ From: Alokeshwar Tiwary To: excel-macros@googlegroups.com Sent: Saturday, 6 June, 2009 7:07:58 AM Subject: $$Excel-Macros$

$$Excel-Macros$$ Re: UserForm Initializing after if.. then statement

2009-06-07 Thread Alokeshwar Tiwary
--- Regards Ashish Jain http://www.excelitems.com http://www.openexcel.com *Developer of Open XL* - On Jun 6, 3:11 pm, Alokeshwar Tiwary wrote: > Dear All, > > I encountered a very strange problem. I have two userforms and both of them > def

$$Excel-Macros$$ Re: UserForm Initializing after if.. then statement

2009-06-07 Thread Alokeshwar Tiwary
--- Regards Ashish Jain http://www.excelitems.com http://www.openexcel.com *Developer of Open XL* - On Jun 6, 3:11 pm, Alokeshwar Tiwary wrote: > Dear All, > > I encountered a very strange problem. I have two userforms and both of them > def

$$Excel-Macros$$ Re: UserForm Initializing after if.. then statement

2009-06-07 Thread Alokeshwar Tiwary
--- Regards Ashish Jain http://www.excelitems.com http://www.openexcel.com *Developer of Open XL* - On Jun 6, 3:11 pm, Alokeshwar Tiwary wrote: > Dear All, > > I encountered a very strange problem. I have two userforms and both of them > def