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

    Can we combine DateValue and Aggregate function?

    Hello Everyone! I have a date column, from which I need to pick the earliest date by using AGGREGATE function. But it doesnt work with the data format. So, I have to convert that date using DATEVALUE and then use aggregate function to get the desired result. Can I use both functions at the same...
  2. K

    Dynamically picks earliest date (in quarter)

    Works perfectly - thanks again! Quick question though - what is that '2341' in the mid formula?
  3. K

    Dynamically picks earliest date (in quarter)

    It works - thanks! Now if I have to add 1 quarter to the subsequent rows - like on cell D10 and onwards - how do I do that?
  4. K

    Dynamically picks earliest date (in quarter)

    Hello Everyone! I am converting date column to quarter output. On another sheet, I have a strat that should automatically picks earliest of quarters from the above list. Attached is the spreadsheet that visually explains - Essentially, I need a formula that can pick earliest of quarters from a...
  5. K

    Data Validation and Menus

    Thanks alot!! You made it look so easy - Needless to say I am new to VB :D
  6. K

    Data Validation and Menus

    Private Sub Worksheet_Change(ByVal Target As Range) With Application .ScreenUpdating = False .EnableEvents = False End With ay = ActiveCell.Row ax = ActiveCell.Column With Sheets("Dashboard") If ay = 14 And ax = 6 Then y_row = -1...
  7. K

    Data Validation and Menus

    I did modify to see the dates on Column I but not all years are working -
  8. K

    Data Validation and Menus

    Worked perfectly, One more query then - I am trying to line up Number of months from Range (B:M) on cell S in vertical format - Essentially, when I change the year in cell P14, it lines up relevant months of the year -
  9. K

    Data Validation and Menus

    I dont necessarily need those formulas, I'd like to know how to did it -
  10. K

    Data Validation and Menus

    Thats exactly I was looking to do initially - How did you do it? I dont see any formulas -
  11. K

    Data Validation and Menus

    I am using Data Validation technique coupled with Name Ranges - Using the link provided by bobhc - thanks for the guidance -
  12. K

    Data Validation and Menus

    Attached without any links -
  13. K

    Data Validation and Menus

    Thanks! I will look into it -
  14. K

    Data Validation and Menus

    Hi, I ran into a situation where I would like to select an item from drop down (Cell H4) and then I would like to show relevant fields on Cells J6 through N6 - For the first row (#6) I was able to do a simple if formula but I have 6 more items in drop down menu and I dont want to write an if...
  15. K

    Dynamic Charting

    Thanks! I will go through the link -
  16. K

    Dynamic Charting

    Thanks Man!! - You made it look so easy - Do you know how to make X and Y axis dynamic as well, where the markers on axis change according to data?
  17. K

    Dynamic Charting

    Sorry Nebu for not clarifying enough - I am trying to figure out two things - - When the chart is plot it automatically avoids null and zeros - - also, drop down menu has different products and each have different datapoints on X axis - So I want to make both axis dynamic - I have attached...
  18. K

    Dynamic Charting

    Here's a file with chart -
  19. K

    Dynamic Charting

    Hi, I have few cohorts of data with variable data on X and Y axis. I'd like to select those cohorts from drop down menu and would like to see data converting to charts. I have done that part. My Question is how do I avoid blank or NULL cells from inclusion in the chart. Also, is there a way to...
  20. K

    Read Sql query from text file (thru VBA)

    Hi, I am trying to acheive results by sending a text file (sql.sql) to SQL server and fetch the data into excel (64Bit). Any help would be appreciated - Thanks, ' Dim sqlFile As String 'sqlFile = "C:\Users\klakhani\Documents\sql.txt" 'Dim sqlText As String 'sqlText =...
  21. K

    Index/Match

    Smooth!! Thanks Luke!
  22. K

    Index/Match

    Hello Everyone! I am trying to achiwve desired results by using Index/Match combo. Attached is the sprdsht with example - In essence, I am trying to fetch matching/corresponding date for Column B on sheet 2 by matching the column D on sheet 1 - I will need ColumnB and C on sheet 2 -- Please...
  23. K

    Blank cell summation

    Perfect!! Thanks -
  24. K

    Blank cell summation

    Hi All, I am looking for an answer to below query - CUST IDVALTYPE 15000Jeep 22000Porche 33200 41000 51500 Nissan If I want to get sum of all the values in column B that corresponds to Column C (Blank cells), how should I do that? - I am looking for $4200 - I am dealing with data that has 250K...
Back
Top