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

    Provblems creating formula for action follow -up

    Just use an IF formula …
  2. Marc L

    VBA + MailTester.Ninja API

    Still vague so without the requested good enough description the better is to attach a workbook with the exact expected results according to all different cases you have met using manually the website. Once done I will write only a single procedure, the one without a key, working only under...
  3. Marc L

    VBA + MailTester.Ninja API

    How many rows to check ? As since the second row to check there must be one minute delay so for 10 rows that should need around 10 minutes to complete, thus freezing Excel during the execution ! For 100 rows then more than 1h40min ‼ As any Excel forum is not for mind readers then we won't guess...
  4. Marc L

    VBA + MailTester.Ninja API

    So if you already used this API why don't you share your code ?!
  5. Marc L

    Delete sheets with macro

    Hi ! @rollis13 : for the fun a demonstration deleting worksheets at once, to better paste to ThisWorkbook module : Sub Demo1() Const C = "¤" Dim Ws As Worksheet, S$ For Each Ws In Worksheets If IsEmpty(Ws.[A2]) Then S = S & String(-(S > ""), C) & Ws.Name Next...
  6. Marc L

    Importing about 2.5 million rows of data from TXT file

    Hello, I've done the same for around 5 millions rows with few columns under VBA - not this forum section - within a single worksheet, just leaving two blank columns between the data once filled the last worksheet row. But once done the guy was lost, how to manage the data, and so on … Just...
  7. Marc L

    VBA + MailTester.Ninja API

    Hello, if you bought this API so you have its documentation …
  8. Marc L

    VBA macro to generate a print output for multiple persons. One person, one worksheet for printing.

    If the generated therapists' sheets don't well fit the print form then an easy workaround should be the trick …
  9. Marc L

    VBA macro to generate a print output for multiple persons. One person, one worksheet for printing.

    Your bad 'cause you did not follow the dark red direction where to paste the VBA procedure, can't be within a standard module …
  10. Marc L

    VBA macro to generate a print output for multiple persons. One person, one worksheet for printing.

    So why not just well explaining your need with a well reflecting attachment rather than letting helpers to guess ?! Printing on a form can use a standard Excel columnar format without any concatenation … Anyway, according to your initial post attachment my VBA revamped demonstration which first...
  11. Marc L

    VBA macro to generate a print output for multiple persons. One person, one worksheet for printing.

    Rather than using sheets "1" to "12" why not just generating sheets according to therapists' names ? And do you really need this weird concatenation instead of the Excel usual columns layout ?
  12. Marc L

    Multivariate data visualisation advice

    Hi, with such guessing challenge - which has no place in any Excel forum ! - you should create your thread at least two weeks before the deadline, here maybe a month 'cause of the missing workbook attachment ! When I read your initial post I prefered to directly move to the next unread thread...
  13. Marc L

    Adding XL version

    Ce n'est pas faux ! ;)
  14. Marc L

    Check for empty cells across multiple sheets and return values

    Only Part Number should be necessary with a hyperlink and in case of any formula within column B another VBA demonstration (v2) to better paste to ThisWorkbook module : Sub Demo2() Const M = "Missing Location" Dim R&, Ws As Worksheet, V, S$ R = 1 Application.ScreenUpdating...
  15. Marc L

    Check for empty cells across multiple sheets and return values

    As I wrote « according to your initial post attachment » … So weird your attachment does not well reflect the real data ! With a formula the cell can't be empty so in this case stay with p45cal slower way (or post #14 Demo2).
  16. Marc L

    Check for empty cells across multiple sheets and return values

    But the destination is still missing ! (text file, screen, worksheet, …) Anyway following p45cal sample according to your initial post attachment a VBA demonstration to better paste to ThisWorkbook module : Sub Demo1() Const B = "Blanks" Dim R&, Ws As Worksheet, Rc As Range R = 1...
  17. Marc L

    Check for empty cells across multiple sheets and return values

    Hi, you should detail your 'return the value from column A' with a better explanation so with nothing to guess and to raise your chances with a before / after workbook sample …
  18. Marc L

    one sub routine required for sorting family tree

    Thanks again. This is as simple as following Excel logic : why not just using the Excel sort feature rather than reinventing the wheel with the risk of a square one … I have no platform, just a kid who turned nut his mother during a Covid19 lockdown so I started to give him some pure logic...
  19. Marc L

    Count Colors

    Hi, according to your attachment a non CF counting color function : Function CountColor&(Rg As Range, Rc As Range) For Each Rg In Rg: CountColor = CountColor - (Rg.Interior.Color = Rc.Interior.Color): Next End Function Do you like it ? So thanks to click on bottom right Like !
  20. Marc L

    one sub routine required for sorting family tree

    As I was in a hurry yesterday I forgot a crucial point if … The kid Excel beginner who solved my training based on this thread assumed the data is always ascending sorted on Level column. But if it's not always the case, like after running the VBA procedure, if a level #1 is after row #192 his...
  21. Marc L

    Adding XL version

    You should loose less time just asking first for the Excel version than thinking / sharing a solution which can't work on an elder version … Not my cup of tea to be contradictory, the forum works, so not a major concern again, but yes that should add some comfort if well used …
  22. Marc L

    one sub routine required for sorting family tree

    Thanks. As a reminder my demonstration just reproduces what any Excel user - even a beginner - can operate manually ! TEBV rule aka Think Excel Before VBA …
  23. Marc L

    one sub routine required for sorting family tree

    According to your workbook attachment the 4 steps Excel basics VBA demonstration sorting the active worksheet : Sub Demo1() With [A1].CurrentRegion.Columns .Item(.Count + 1).Formula = "=IF(ISBLANK(B1),CHAR(63+ROW()),VLOOKUP(B1,C$1:" & .Cells(1, .Count + 1).Address(0) & _...
  24. Marc L

    highlight in yellow if within same month

    Typo : should be 36 rather than 35 (or 6 for a brighter yellow or .Interior.Color = vbYellow) …
  25. Marc L

    highlight in yellow if within same month

    With such files avoid CF …
Back
Top