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

    Trendlines VBA for All Charts on a Worksheet (ActiveSheet)

    Can you please post a sample file
  2. Hui

    How to alter VBA code

    Try this: Private Sub Worksheet_Activate() Dim wSheet As Worksheet Dim M As Long M = 1 With Me .Columns(1).ClearContents .Cells(1, 1) = "INDEX" .Cells(1, 1).Name = "Index" End With For Each wSheet In Worksheets If wSheet.Name <> Me.Name Then...
  3. Hui

    go to next colored cell

    Josh Can you please attach a sample file
  4. Hui

    Clever formula to concatenate

    Assuming this data layout: B9: ="Section" & IF(C9>1,"s","") & " " & TEXTJOIN(" ",TRUE, IF(C3:C6="Yes", RIGHT(B3:B6,1),"")) Ctrl+Shift+Enter C9: =COUNTIF(C3:C6,"Yes") Enjoy
  5. Hui

    I need help with formula to find out totals based on month.

    F2: =SUMPRODUCT(($B$5:$B$298="Guest")*($A$5:$A$298>=DATE(2021,1,1))*($A$5:$A$298<=DATE(2021,1,31))) F2: =COUNT(IF($B$5:$B$298="Guest",IF($A$5:$A$298>=DATE(2021,1,1), IF($A$5:$A$298<=DATE(2021,1,31),)))) Ctrl+Shift+Enter
  6. Hui

    Advance Filter not working

    Clear all the cells in Rows 2:6, they should have nothing in them Except for the cells with the Selection Criteria Then it works fine
  7. Hui

    EXACT( ) with multiple values

    Some formulas are Array Formulas by default eg: Sumproduct
  8. Hui

    Need to Chage this formula from metric to imperial. Can anyone help?

    What unit are you converting to what unit ? Can you please post a sample file?
  9. Hui

    EXACT( ) with multiple values

    Look at the expression =AND(EXACT(B9:F9,B9)) if you select the text part of that EXACT(B9:F9,B9) Now Press F9 it displays {TRUE,TRUE,TRUE,TRUE,TRUE} Which is the comparisson of F9 with each cell in the range In this case they are all exact matches and so it displays an array of "True"" The And()...
  10. Hui

    Min and Max values not working

    Left() and Right()are string functions and so return strings as outputs In J4: Put =VALUE(LEFT(B4,3)) You get the idea now ?
  11. Hui

    Highlight a Cell with VBA

    Can you please attach the file?
  12. Hui

    Highlight a Cell with VBA

    Paul the 2 macros work together with the global variable
  13. Hui

    Highlight a Cell with VBA

    My file has code in the Sheet1 module Did you see that ?
  14. Hui

    Highlight a Cell with VBA

    Paul Refer the attached file:
  15. Hui

    I would like to find a code to copy from Clipboard straight to a TextBox

    Private Sub CommandButton1_Click() TextBox1.Text = "Apples: " End Sub etc
  16. Hui

    VBA to manage multiple scenarios in a financial model

    The Data table is in Range AI10:AN30 Refer to the diagram below and the points below for s description o how it works 1. The data table is a Row Lookup Table and uses cells in Row 10 Columns AJ:AN 2. The DT places the looked up values 1 to 5 into cell G12, The Scenario Number 3. The model...
  17. Hui

    VBA to manage multiple scenarios in a financial model

    Updated as requested
  18. Hui

    VBA to manage multiple scenarios in a financial model

    1. No, But just do it manually, that what I do 2. Yes, I'll repost in a minute 3. Select the Data Table area and Apply a format using Ctrl+1
  19. Hui

    VBA to manage multiple scenarios in a financial model

    Gregg I'm going to have to start charging commissions on this work ? ;) Have a look at the attached file Check out the data Table area Enjoy
  20. Hui

    Conditional formatting

    Select W12:W24 Edit the CF and edit the green (2nd CF) Use a Formula =AND($W12>0, Data!$G$3="") Type that to ensure the " are the correct " 's Set the CF to stop if True
  21. Hui

    Create an isosceles triangle from the centre point of a circle

    @Daics Can I ask what the application of this is ? If it is for displaying wind roses, there are better solutions already around
  22. Hui

    Instalment / payment plan creation

    C3: 1% C5: 2% C12: =IF(VLOOKUP(B12,$B$2:$C$6,2)="",1-SUM($C$11:C11),VLOOKUP(B12,$B$2:$C$6,2)) Copy C12 down
  23. Hui

    Goal Seek for Multiple Cells

    Your model doesn't really explain what you want to do Please use specific references and maybe give us an example It is also preferable if you don't reference external web sites Thanx
  24. Hui

    Save as PDF Formatting issues

    Can you explain "it's not similar" as they look fine to me
  25. Hui

    Pivot table and Pivot chart problem

    Second question first Right click on the 31-Oct-20 , select Group... Select Years Apply First Question I'm not really sure what you mean here Right Click on Alison Stewart Select Field Setting Select Layout & Print Tab Tick Repeat Item Labels Repeat for Development Manager Field The Table...
Back
Top