• 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.

Recent content by lohithsriram

  1. lohithsriram

    Unable to parse a value without hardcoding index

    HI Shahin, Try the array to get the last index. Sub Data_scraper() Dim IE As New InternetExplorer Dim ieDoc As HTMLDocument Dim wdArray() As String With IE .Visible = False .navigate...
  2. lohithsriram

    while running macro, work with another excel

    Hi, You need to create a new instance of Excel for this. Once your Macro is running on Excel, go to start, run and type in "Excel" to open a second instance. Open your other workbooks on the 2nd instance.
  3. lohithsriram

    Setting Limit Send Email VBA

    Hi Asparagus, I am not very clear what exactly you want here but you can try a trick of saving True or False on a cell somewhere on your Excel workbook. By default set the cell value to False and check this before sending an email . when it is open for the first time, since its False send the...
  4. lohithsriram

    VBA code needed for copying checkbox captions to clipboard

    Glad that it worked. Yes, Agree with Narayan sir. It makes the code much more crisp if we add it up in the collection loop. Thanks.
  5. lohithsriram

    VBA code needed for copying checkbox captions to clipboard

    Hey, Replace Txtuserfree with your own text box name what you have on the form. Also, ignore that "concatenate the text" term here as I was asking you to add all your checkboxes in the way I have done these lines If CheckBox1.Value Then strclipboard = strclipboard & CheckBox1.Caption &...
  6. lohithsriram

    VBA code needed for copying checkbox captions to clipboard

    Hi Grumpy88, Try the below code. This will let you grab the string data and puts it on the clipboard. Remember, you will have to add a reference to your VBA project, go to the Tools menu in the VBA editor and choose the References item. In the dialog that appears, scroll down the list and...
  7. lohithsriram

    File exists or not with created time

    objFolder.self.modifydate should fetch you the modified datetime of the folder. Check if objfolder is nothing after you set the folder. If its nothing then exit the sub
  8. lohithsriram

    Import pic with Reference

    Glad it helped you... All the best. :DD
  9. lohithsriram

    Import pic with Reference

    Found this code on web, but have changed a bit for your need. Copy this UDF code to your workbook module and use as a function on your Excel cell. By default the image fits to your cell otherwise you can specify a range as well where you want to expand your image. Public Function...
  10. lohithsriram

    automatic charting from user input

    Hi Goslings, There is a very good explaination of creating the charts with dynamic range of values. Check this out. I hope this is what you are looking for http://chandoo.org/wp/2009/10/15/dynamic-chart-data-series/
  11. lohithsriram

    unprintable highlighting

    Hi Wilco, Use Mike H's idea to select all the datavalidation cells in the Excel worksheet and add the Conditional Formatting for all the cells. Choose all DataValidation Cells Conditional Formatting -> Format only Cells that contain -> Format only cells with "No Blanks" This should show...
  12. lohithsriram

    Power Map 2013 - Data Labels

    Hi Bsmith, Uploading a sample file will fetch you a better answers. Thanks.
  13. lohithsriram

    automatic charting from user input

    Hi Goslings, What are you trying to achieve here? Do you want these 3 charts to get automatically change when a new row of data is added? or do you want a new chart to be added with a new row?
  14. lohithsriram

    Weight Scale Chart - FunChart

    Hi Deb, Innovative!!! keep bringing more and more. How about adding the weights(datalabels- 3D polygon shapes) on the weighing scale plates. That should make it look more realistic.
  15. lohithsriram

    Paste data in selected sheets - Loop through selected sheets

    Hi Arul Govind , Add the below line of code after the FOR statement. Activate the sheet before you paste the values. This should work fine. wks.Activate Your code should be Public Sub PASTEDATASELSHEET() 'PASTE DATA IN SELECTED SHEETS Application.DisplayAlerts = False Dim wks As Worksheet...
Back
Top