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

    New Chandoo.org VBA Forum

    Oops, didn't see the link there... Thanks, Luke :)
  2. Radu

    New Chandoo.org VBA Forum

    Great idea, Hui & Chandoo! Can we make it sticky? Have a great one, Radu
  3. Radu

    Dynamic Dashboard

    Guity, Please send me your file at radooku at gmail dot com. You could also share the file through Google Docs. That way, we'll be able to collaborate in real-time. As for your formula, you're absolutely right. When the case is AllProduct or AllPeriod, you could add a little IF formula...
  4. Radu

    Dynamic Dashboard

    can you post the SUMIFS() formula you have created? Thanks, Radu
  5. Radu

    Dynamic Dashboard

    What do you mean about "knowing anything about this dashboard"? Try and be more specific, because the more specific you are, the faster we can help you. Cheers, Radu
  6. Radu

    Dynamic Dashboard

    Guity, I gave it a quick look :). What you could do, in terms of the help form: 1. if you're working on the template file: go to the HelpSheet, then replace/add help topics to your liking (hint: if you add another help topic, the form will be automatically updated to include it); the only...
  7. Radu

    inventory control FIFO

    Hi, Have a look at this: http://thedailyreviewer.com/office/view/how-to-program-fifo-inventory-in-excel-114832039 Hope it helps, Radu
  8. Radu

    Dynamic Dashboard

    Guity, In order to create a user form, you will have to go to VBE, select Insert-User Form. This will create a blank user form. You will then have to insert controls and set control properties etc. You can also write code for each control in the form or for the form itself (double-click each...
  9. Radu

    inventory control FIFO

    Hi, Have a look at this: http://thedailyreviewer.com/office/view/how-to-program-fifo-inventory-in-excel-114832039 Hope it helps, Radu
  10. Radu

    inventory control FIFO

    Hi, Have a look at this: http://thedailyreviewer.com/office/view/how-to-program-fifo-inventory-in-excel-114832039 Hope it helps, Radu
  11. Radu

    =IF(ISTEXT(CELLS),V,SUM(CELLS)

    Dean, Sorry, the formula is =IF(AND(ISERROR(MATCH("A";A1:F1;0));ISERROR(MATCH("V";A1:F1;0)));SUM(A1:F1);IF(NOT(ISERROR(MATCH("A";A1:F1;0)));"A";IF(NOT(ISERROR(MATCH("V";A1:F1;0)));"V";NA()))) Got a little careless there, at the end of my workday :-) Besides the fact that the formula will...
  12. Radu

    =IF(ISTEXT(CELLS),V,SUM(CELLS)

    Hi, Try this. It's a bit messy, but it will give you what you want...
  13. Radu

    Inactivate automate sorting in Pivot table

    Hi, In Excel 2007, in Pivot Table options - Display Tab - Field List. You have there 2 options: "Sort A to Z" and "Sort in Data Source order". Hope this helps, Radu
  14. Radu

    Absolute Color Coding - Excel 2007

    Hi, Assuming you have the values in the range A1:A10, select the cells you want to format, go to Conditional Formatting-Color Scales-More Rules. Make sure you've highlighted the "Format all cells based on their values" option. In the "edit the rule description" box: - if you want to...
  15. Radu

    Dashboard and option radio buttons

    Hi, To hide the numbers, just use the ;;; custom format. Then use a formula to link the cell you want the numbers to appear (for instance, assuming that you have your button linked to cell C5, format cell C5 as Custom - ";;;", then in another cell type =C5). Regarding the radio button links...
  16. Radu

    Open counter

    Have a look at this: http://excel.tips.net/Pages/T002497_Counting_the_Times_a_Worksheet_is_Used.html
  17. Radu

    VBA to filter and copy actions based on username

    Hi Hui, Thanks for your quick response. The report is generated each time from a database and exported automatically in a new workbook, so there's no chance that a user will have a workbook already named after him. Regarding the actions, I need to copy all the rows where the action was made...
  18. Radu

    VBA to filter and copy actions based on username

    Hi all, I have (in Excel 2003) a report containing the actions made by some users in Sheet1, and the list of users that I need in Sheet2. Can anyone help me with some code that would: 1. Check, in Sheet1, the actions made by the users in the list in Sheet2; 2. Copy the entire rows where the...
  19. Radu

    VLookup for a list of names with two sets of values

    zacpower, try this, for the given criteria: =IF(AND(B2>0;B2<=7;C2<10%);"Really Bad";IF(AND(B2>0;B2<=7;C2>-10%;C2<10%);"Sort of Bad";IF(AND(B2>=8;B2<=15;C2>-10%;C2<10%);"Average";IF(AND(B2>=16;B2<=20;C2>20%);"Really Good";"N/A")))) I...
  20. Radu

    VBA question

    Hi Hui, Thanks for the advice, I will try to do without the VBA. Like you said, there's no point in having multiple versions of the same report, or make the project error prone. Have a great one, Radu
  21. Radu

    VBA question

    Hi all, I have a weekly report that I've chosen to reformat using a dashboard approach. All the sheets in my report have combo box form controls that show the start and end of week dates (for instance, 22.02.2010 - 28.02.2010). What I would like is that when the user chooses another week in...
  22. Radu

    To get correct time format with incorrect value??

    Hi Richard, and welcome! I've had the same problem some time ago, and in my case I've managed to solve it by adding a new sheet called "Instructions", in which I've explained to people exactly what I wanted them to do. Maybe this could work for you too... In any case, you could use in another...
  23. Radu

    Error correction in this formula

    Hi Dee, Try this: =IF(OR(AND($P4="1 Phase",DO4=""),AND($P4="2 Phase ",$DQ4=""),AND($P4="3 Phase ",DS4=""),AND($P4="4 Phase ",DU4=""),AND($P4="5 Phase ",DW4="")),"Please look into it","All well"). Regards, Radu
  24. Radu

    Dynamic Chart Plotting

    Hi. Maybe you could pick up some ideas from this: http://www.processtrends.com/pg_chart_scroll_bar_checkbox.htm or this: http://www.processtrends.com/pg_dynamic_charts.htm. Or, you could go with applying data filters to your source data, like here...
  25. Radu

    TURN OFF DOUBLE-CLICK JUMP TO BOTTOM OF COLUMN

    Hi. Here's an idea: if you're using Excel 2003, go to the Tools - Options menu, in the Edit tab, and see if the "Edit directly in cell" box is checked. If it isn't, check it and you should be home free :D Let me know if it works. Have a great one!
Back
Top