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

    Highlight cell if the date is older than current month, also needs to be consider previous year

    I have done the changes and it's working. Thanks for your help and time.
  2. uday

    Highlight cell if the date is older than current month, also needs to be consider previous year

    Thanks vletm for your prompt response. Just want to extend the condition to another level. Now, is it possible to highlight the date, if it is + one month greater than the current month's date? This means, if today's date is 03-Jan-2023 then the index of the month is 1 for Jan and now I want to...
  3. uday

    Highlight cell if the date is older than current month, also needs to be consider previous year

    Hi Experts, I am trying to highlight cells in the A column if the value is date then only it will check for the condition where it will be highlighted if the date is older than the current month and year. I have attached the Macro workbook. Regards, Uday Sub highlightDates() Dim currentMonth...
  4. uday

    Exact Match finding issue with Code

    Hi, I am facing issue to find out exact match. Please help. I have attached the code herewith. strsub is variable and contain the string. and "Cross Charge" is the value which needs to be looked up in strsub string. The issue is if "Cross Charged" is mentioned in a string Macro is also...
  5. uday

    Need help for copy pasting data in loop process

    Hi, I need a help on below code which will find the match and pasting the data accordingly. Attached is the Excel macro template. Condition for "if statement" if the customer id found in "Detail Sheet" then copy and paste the information finding the empty row below the data set. if not, then...
  6. uday

    Delimited Data by rows and copy respective data

    Thanks for helping
  7. uday

    Delimited Data by rows and copy respective data

    Hi, I have written one vba code where Data 3 will be delimited by "," and inserting rows depends on delimited values count. Now, the this code does not copying respecting data which is present in Data 1 and Data 2 rows. I have paste the expected output in Expected result tab. Please help...
  8. uday

    Positive and Negative Value sum up to 0 for same employee name

    Hi, I want to create a macro where positive and negative line items are matched up to 0 and move to the Clear tab. I have already provided the desired output that I want to generate. For Prosun there are 3 line items with the same value in different integer, however, I want to pick up the first...
  9. uday

    Split Data into multiple rows with other column data intact

    Hi, I am trying to split the data into multiple rows in Sheet1. But EXCEL vba is not working in "SPLIT" function. It is stopping there and not going to the next line of code. I have provided desired output data in Output tab. Please see the attached file. Thanks & Regards, Uday
  10. uday

    SUM calculation for Variable Data range

    Hi all, I want to calculate the sum value of the Price column in the attached file. However, the challenge is the data range in the Price column is not fixed like if I want to insert a new row the sum range should automatically change based on Item column data. Moreover the 0 and "-" are in...
  11. uday

    Loop through files _ Rename and Update the data from Master Data

    Please, any response from the forum would be highly admired!!
  12. uday

    Loop through files _ Rename and Update the data from Master Data

    Hi all, Happy new year!!!!! I have a master data file where data is changing under three categories for every financial period. Now, for each category, I have separate files (Apple, Mango, Lichi) to update them for the current period. As of now, data is updated till period 11, however, I have...
  13. uday

    Save files based on Cell value

    Thanks!!!
  14. uday

    Save files based on Cell value

    Thanks!! Working like a charm. This macro needs one very small change further. This has been realized later. If the cell value is A then the file should be saved as Apple and B as Bat, C as Cat, and D as Dog. Awaiting for your response. Regards, Uday
  15. uday

    Save files based on Cell value

    Hi RDAngelo, Thanks for your help! and Time The Macro is working fine but it is not saving the file into the Downloaded folder with the naming convention mentioned in Cell value A1. Like, if the file's Cell A1 value is "A" then it should save as the file as "A" not 1,2,3....etc. Do let me...
  16. uday

    Save files based on Cell value

    Hi, Hope you guys are doing well!! I need a macro that will open a file from downloaded folder one by one (Loop) and save it based on Cell A1 value. Like, in the downloaded folder if the first file has cell value A then it will save the file as A in the A folder and B in a B folder. Basically...
  17. uday

    Worksheet Function

    Thanks for the reply, Sir. However, I want VBA to job done.
  18. uday

    Worksheet Function

    Hi all, I am trying to sum all value from A to C category in the Total column by rows. Now, if Column A has value then the only sum function should applied in the Total column. Otherwise, it should remain empty. I have attached the sample file herewith.
  19. uday

    Sum formula with different criterias

    I have attached the file can you please apply in attached file?
  20. uday

    Sum formula with different criterias

    Hi team, I need total sum of WD1 for BSC ,cleaning and pest in B2,B3,B4 cells. Same way this could also applied for WD2 and WD3 cells. The data tab is Sheet2. File is attached. Regards, Uday
  21. uday

    Copying sheet from different workbook to target file

    Thank you very much vletm for the suggestion. It is working fine now.
  22. uday

    Copying sheet from different workbook to target file

    Sorry for not following the code tags. Answer to your question related to "wb" (Reply # 10). I wanted to create a variable where I can represent all input file Book1, Book2, Book3 by "wb". It was not working and was showing subscript out of range. I could not find the reason. I wanted to do...
  23. uday

    Copying sheet from different workbook to target file

    I have written the code in different way to work. It is working now. But still not satisfy. Want to do it in loop process. Please check the below coding and please ignore my reply at 5.12 pm. Book1, Book2, Book3 should have Mango, Apple, Lichi sheet which will copy to ABC workbook. Can you...
  24. uday

    Copying sheet from different workbook to target file

    No, it is not working with the second for next loop process. I am getting error in below mentioned line. Sheets("ABC").Copy After:=Workbooks("wb").Sheets(1) Error message - Subscript out of range. ABC is my target file. where I want to copy the ABC sheet from ABC workbook to Book1...
  25. uday

    Copying sheet from different workbook to target file

    Hi vletm, I have wrote the below code. however not getting error . Please help. Sub test1() Dim path As String, path2 As String, i As Integer Dim wb As String On Error GoTo errh path = Range("E2").Value Workbooks.Open Filename:=path Windows.Application.Workbooks("Macro...
Back
Top