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

    Name conversion function from English to Arabic

    Here's the translation website I use: https://en.excel-translator.de/translator/
  2. Luke M

    Hello

    Hello, and welcome to the community! :awesome:
  3. Luke M

    vba Code to activate Microsoft Office 2010

    I'm afraid this isn't a VB type problem, but rather a licensing issue. Verify that you have the correct license purchased and then try to reactivate your product from the File menu.
  4. Luke M

    VBA Code to split a range on cells equally

    Hi Moondog. Could you give a sample of what you mean (what you have now + what you want it to look like)?
  5. Luke M

    ThisWorkbook.Activate does not WORK

    Your code is very hard to read due to similar variable names, the use of upper and lower case "w" right next to each other. Also, using a variable called "WKBactive" is not really helpful, as it's defined as an object that was active at time of execution, not the one that's always active. I'm...
  6. Luke M

    Undeclared Variable

    Wrong kind of quotation marks around the "F9". Need to be straight quotes, not slanted quotes. Also, drop the ", True"
  7. Luke M

    Need help on a project

    Hi Adam, I've removed some of your personal info, simply for your own protection as this is a public forum and we have thousands of bots that crawl through and could harvest that info. Instead, if you can't simplify to a basic sample sheet, you could instead describe your problem and ask for a...
  8. Luke M

    Creating a turbine wheel simulation to illustrate the number of defects or stress concentrations on each blade.

    This is one of those rare cases where I'd suggest using a radar chart. You could have each spoke represent a blade, and the circular arrangement would correspond to blade layout.
  9. Luke M

    Putting a hidden comment in a formula without being calculated?

    You can put a text string within the N function. =A1*B1+N("This is rate multiplied by time")
  10. Luke M

    Pulling OT hours

    @aligahk06 You posted this same question here: https://www.msofficeforums.com/excel/43076-pulling-data.html This is called cross-posting, which while allowed, requires that you post links to your other questions so that answering members of the various communities can be aware of when an issue...
  11. Luke M

    EVENT LOOKUP WITH TIME CALCULATIONS

    Sure. Doing anything else would fulfill the requirement of not being a Gantt chart. You can also make the resolution on your chart however fine (seconds, milliseconds, etc.) that you want. When you figure out what you'd like to display other than a Gantt chart, let us know, and we can try to help.
  12. Luke M

    EVENT LOOKUP WITH TIME CALCULATIONS

    Chandoo has several free tutorials and examples on creating Gantt charts, just takes a little bit of charting magic. https://chandoo.org/wp/gantt-charts-project-management/
  13. Luke M

    Pulling OT hours

    Formula in C2 of Overtime sheet =SUMIFS(TimeCard!$M:$M,TimeCard!$A:$A,$A2,TimeCard!$B:$B,C$1)
  14. Luke M

    Posting code to Chandoo.org.

    Hmm. You can also try manually adding the tags. Regular code is square brackets around the word {CODE}your code here{/CODE}. Inline code uses {ICODE} something here {/ICODE} Remember, you would use square brackets, not the curly brackets I used above.
  15. Luke M

    Posting code to Chandoo.org.

    Where it gets placed. Here is inline code Here is regular code So, might use inline when you want to just paste a single line of command, like to say: Change line 5 to be Application.ScreenUpdating = False and you should be good.
  16. Luke M

    Posting code to Chandoo.org.

    In the editor, click the button with 3 dots, and you'll see an insert option
  17. Luke M

    Facing nesting error and could not find where it is getting wrong. please advise.

    Working with what we have, you could solve Q1 a little easier then by using some OR/AND functions. That'll help you get around any nested function limits.
  18. Luke M

    How maximum nested if function allowed?

    In Office 2003 or earlier, it 7. Newer versions can go up to 64 functions deep. However, in your case, it looks like you're just wanting to build a dependent validation list. https://www.contextures.com/xlDataVal02.html
  19. Luke M

    Facing nesting error and could not find where it is getting wrong. please advise.

    This seems like a poorly built table. For instance, what if someone is Full Time, with high salary, but scored a 5? For that matter, there appears to be no way for a Full Time person to get anything besides "Average" or "Poor". Q2 is much easier, where when given number 1-12, to get the month...
  20. Luke M

    Conditional Formating

    Since Sunday is WEEKDAY = 1, we can use a CF formula like this on cell A2 =WEEKDAY(A2)=1
  21. Luke M

    VBA Code needed to Find Value in Column, Change Color of Cell if Value Found, Else End

    For the basic MsgBox, you can't change the color. If you want to build your own UserForm, then you would be able to customize the color. In your case, it wouldn't be too bad since we're just displaying info. Could be a form with caption and button. You'd need to Load the user form, set value of...
  22. Luke M

    VBA Code needed to Find Value in Column, Change Color of Cell if Value Found, Else End

    Here's your code. Sub FindAndColor() Dim fCell As Range Dim firstAdd As String Dim myCount As Long 'Where are we searching With Worksheets("Sheet1").Range("D:D") 'What are we looking for? Set fCell = .Find(what:="T3RRF2", LookIn:=xlValues...
  23. Luke M

    How to convert a large string into multiple lines (=10 characters)

    Here's a function you could use. Function LineSplit(strStart As String, lngLength As Long) Dim i As Long 'Remove any existing line breaks strStart = Replace(strStart, Chr(10), "") For i = lngLength To Len(strStart) Step lngLength + 1 strStart = Left(strStart...
  24. Luke M

    Showing Product production in line

    Duplicate post. Please refer to your earlier thread.
  25. Luke M

    Remove password

    I understand your concern, but my disagreement with it is that Excel doesn't really offer "security", it offers "protection" in these cases. The distinction is that the former refers to keeping files secure, and away from the wrong people. The protection that most people use in XL (sheets...
Back
Top