• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

Search results

  1. vijaySharma

    Automatic POP Up message

    What has you defined in the data validation rule. If the entry is only for number between 1 to 100 Allow = Whole Number Data = Between Minimum = 1 Maximum = 100 And then define the Error alert. Everytime the user inputs a number which is not in the limit; the Popup will come on the...
  2. vijaySharma

    Sparklines for Excel 2003

    try this free addin for older versions of excel http://sourceforge.net/projects/sparklinesforxl/ ~Vijay
  3. vijaySharma

    Error when downloading .

    bfraser, This type of error appears when a Excel 2007 file has been manually renamed as .XLS and you try to open. Excel 2007 = XLSX < Excel 2003 = XLS HTH ~Vijay
  4. vijaySharma

    Update an Existing Access Record from Excel

    Ramnath, How many records are present in the excel sheet that you need to update in the access database. Are you searching for a specific account number in the access database and then update as necessary? Also..... this line seems to be incorrect Sheet1.Range("D2") & ")" You can loop...
  5. vijaySharma

    Auto update clock

    Dear Arshad, As stated earlier; there is a Class module which creates the Timer and allow you to use. Yes, it is in the VBA code. ~Vijay
  6. vijaySharma

    Dynamic Named Range

    Try this.. in the data validation list =OFFSET($A$2,0,0,MATCH(2,1/(1-ISBLANK($A$2:$A$65536)))) ~Vijay
  7. vijaySharma

    Macro for sending info as attachment using excel

    Jagadeesh, You can create another sheet called "Email" and then use this to send out emails accordingly. If you have a file already setup and just need the VBA code for doing this; please mail the file to me at sharma.vijay1-at-gmail.com And i will put in the VBA code for this. Also...
  8. vijaySharma

    Browse a file and save to a default folder

    Here you go... Sub SaveFiles() Dim Retval As Variant With Application Retval = .GetSaveAsFilename(, fileFilter:="Text Files (*.txt), *.txt, Excel 97-2003 (*.xls),*.xls, Excel 2007 (*.xlsx),*.xlsx") If Retval <> False Then ThisWorkbook.SaveAs Retval End If End With End...
  9. vijaySharma

    Bad Code needs your brain to delete row in range

    Sub DeleteARow() Dim rRange As Long On Error Resume Next Application.DisplayAlerts = False rRange = InputBox(Prompt:="Enter row number to delete (must be greater than 23). Once deleted, it can't be undone.", _ Title:="ENTER ROW NUMBER", Default:="24") On Error GoTo 0...
  10. vijaySharma

    Bad Code needs your brain to delete row in range

    Not sure if this post is still needing an answer... but if someone else may benefit... the below code is the answer Sub DeleteARow() Dim rRange As Long On Error Resume Next Application.DisplayAlerts = False rRange = InputBox(Prompt:="Enter row number to delete (must be greater than...
  11. vijaySharma

    Hiding Null Time Value

    Aarthi, I have tried to replicate what you have suggested above and the formatting still works. Here is what i did. A B C 1 04:30 05:20 =sum(A1,B1) 2 00:00 00:00 =sum(a2,b2) then i applied the cell format to C1:C2 Is this what you need? ~Vijay
  12. vijaySharma

    Mass-change border hue

    John, We would need to write VBA code to check the below Ask / display the user a color palette to chose the Original Color Ask if this is for the whole sheet OR for a specific Range then search for the color using the below Application.FindFormat.Borders(xlEdgeRight).Color...
  13. vijaySharma

    Hiding Null Time Value

    Try what Hui has suggested and it will work as breeze... 1. Select your cells where this needs to be applied 2. Press CTRL+F1 - OR - Right click and select Format Cells 3. Click on the Number Tab 4. Click on Custom 5. on the right hand side; under the Type BOX... 6. put this h:mm:ss;; 7...
  14. vijaySharma

    Mass-change border hue

    John, If the workbook has been created in Excel 2003; we can easily modify the Default Color Palette to accomplish this. Open the workbook Go to Tools... Options... and then Click on the Color Tab Click on the color that you wish to change and then click on Modify. Now select the new...
  15. vijaySharma

    Hiding Null Time Value

    Aarthi, You could use Conditional Formatting to accomplish this. For cells having value Less Than or equal to 0, format as White Text ~Vijay
  16. vijaySharma

    Hiding Null Time Value

    aarthi, could you post an example of what is current in the cell and what should be hidden ~Vijay
  17. vijaySharma

    Mass-change border hue

    John, Just 1 more thing to add to what Fred has suggested above... after you have selected the new color You will need to apply this to the relevant sections of the Table by clicking the relevate buttons for the table borders. However; my guess on this topic was you were looking for an...
  18. vijaySharma

    User Form

    Dear Guity, The code is meant to move the object to the Top and Left positions that are defined by the end user; so if that is working fine I do not see any issues. I was not able to follow your comment "the shape moves to the corner over those sales" Guess, the object is moving at a...
  19. vijaySharma

    Will you teach an online VBA course?

    Dear Fred, I am available for providing lessons on VBA, if required. Dear Chandoo and Hui, Please consider this request as my candidature for being a Faculty / Guest Faculty if you decide to lauch the program. ~Vijay
  20. vijaySharma

    Converting files to values

    John, Please see the full code below {code} Sub List_Files() Dim f As Object, fso As Object Dim folder As String Dim wb As Workbook, ws As Worksheet Set wb = ActiveWorkbook Set ws = ActiveSheet Set fso = CreateObject("Scripting.FileSystemObject") With...
  21. vijaySharma

    Converting files to values

    John, Accepted and online on gotomeeting... Thanks ~Vijay
  22. vijaySharma

    Converting files to values

    Great... Can you please set a gotomeeting and send me the invite on sharma.vijay1-at-gmail.com I will join in ~Vijay
  23. vijaySharma

    Converting files to values

    John, Do you have teamviewer installed on your system, we can have a remote session where i can check and advice on what is happening. I am also on FB.... http://www.facebook.com/profile.php?id=643050427 ~Vijay
  24. vijaySharma

    How to create a form in Excel

    You have 2 requirements here. 1. To create a data entry form to capture the input. 2. To have another form which displays the data that have been entered. Are you 1. Using a database to store the data / or using excel as your database How to create a Form. In excel (2003). go to...
  25. vijaySharma

    How to use the custom format to show a dash for a cell that contains a formula?

    Guity, My office firewall does not allow to download the file from Skydrive; and the mirror zip at chandoo is broken. if possible please email the same at sharma.vijay1-at-gmail.com ~Vijay
Back
Top