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

Recent content by imla

  1. imla

    get complement rows and distinct union

    how can generate attached pivot Tables.
  2. imla

    filter by month in time range entry

    Hi, if I have a list of pair (start_date, end_date) what technique to use to filter by month some calculation --see attached file-- in the attached example, the measure should return 3 as a result of the selected range (Feb) thanks.
  3. imla

    Dax calculated column and lookup

    Good idea, better than what I'm currently using! I will apply it. Thank you very much.
  4. imla

    Dax calculated column and lookup

    Using Dax; I want to lookup a value by a date, but ignoring the day (just some moth and year) to fill a calculated column some thing like IF AND(month(table2[date]) = month(table1[date]), year(table2[date]=year(table1[date])) I will get the data
  5. imla

    Count last sequence of duplicate values of a given value

    works and also gives other info in negative value (I may use it in conditional formating!) thanks
  6. imla

    Count last sequence of duplicate values of a given value

    Thank you all very much, solutions is exactly what I want (BTW I never used the Frequency function) you saved my day this formula helped me a lot.
  7. imla

    Count last sequence of duplicate values of a given value

    this is a sample file ...the purpose of this formula is to find a sequence that the count exceed a threshold value, and start filling from the empty cell to reset the count (it does not have to be 0) thank you for the help, and I'm here for any other clarification of the problem!
  8. imla

    Count last sequence of duplicate values of a given value

    Hi, I need help using only formula to count last "cl" sequence before empty cell in: a,b,ab ,ac, cl, bb, cl, cl, ab , cl, cl, cl, cl, cl the count is 5 And for this sequence cells: a, b , ac , cl, cl, cl, ab, ac the count is 0
  9. imla

    mouse Cursor appearance and position

    I already red that and I still struggle to convert the point from screen coordinate to Point inside excel sheet. and I use Workbook_SheetSelectionChange to capture the mouse click event!!
  10. imla

    mouse Cursor appearance and position

    Hi, in excel 2007, How can I change the cursor appearance other than the 4 XlMousePointer? Also I want to capture the mouse event and cursor position Left, Top in Point in order to add a shape at that location? Thanks
  11. imla

    transform cells value between 2 workbooks with multi-sheets

    Hi, The problem: Using excel 2007 and given 2 workbooks "wbA" and "wbB", what I want is to transform some cells value from wbA.sheet(i+const) to different cells locations in wbB.sheet(i). Is there a tool or a macro for this task that I can start to customize it?! More info: if I can write a...
  12. imla

    C++ and excel automation

    Hi, I write a programe in C++ (no MFC) to do calculation and I use excel to plot the results; So for this reason I need to fill 3 big tables to 3 excel worksheets . untill now my solution is to output the data to a 3 temporary csv files, and open and move those sheets to a master workbook then...
Back
Top