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

Find Formula Required And Slicer

kme

Member

Attachments

  • New Microsoft Excel Worksheet.xlsx
    27.1 KB · Views: 7
Last edited by a moderator:
... or all data in one sheet.
You can see almost as 'required' with Pivot-table.
 

Attachments

  • New Microsoft Excel Worksheet.xlsx
    28.4 KB · Views: 4

Dear Peter Bartholomew Sir

The formula you shared above is very nice. I relay appreciate​

Now Can you modify this formula further below requirement !!.

Here again attach excel file in that "Sample Answer" Sheet Given . There is Column "B4" Month and "D4" Employee name.
While Changing The 2 Drop down Selection Answer Will be Also Change.

Answer Also Automate to Change Drop Down Month and Employee Selection


We only need the relevant month and relevant employee data as per the drop-down selection, Sample Answer Screen Attached

1752168771170.png

 

Attachments

  • New Microsoft Excel Worksheet (15).xlsx
    28.8 KB · Views: 3
I suspect this is somewhat overcomplicated! I used a 3D range to accommodate the addition of further months but that requires considerable filtering to extract the required data. The alternative is to list the tables and select them from within a CHOOSE statement. The catch there would be that adding sheets would require the formula to be edited.

I have also experimented with slicers and a timeline to select data. To make that work there are tiny pivot tables is cells S23 and S31.
1752250678898.png
Code:
= LET(
    combined, VSTACK(monthlyData),
    month,    CHOOSECOLS(combined, 1),
    filtered, FILTER(combined, month=TEXT(selectedMnth,"mmmm")),
    employee, VSTACK("Employee", CHOOSECOLS(filtered, 3)),
    division, VSTACK("Division", CHOOSECOLS(filtered, 4)),
    data,     CHOOSECOLS(VSTACK(header, filtered), 5, 6, 7, 12, 13),
    return,   GROUPBY(division, data, SUM,3,0,,employee=selectedEmpl),
    IF(selectedMnth>0, return, "No data for month")
  )
 

Attachments

  • New Microsoft Excel Worksheet (16).xlsx
    42.8 KB · Views: 4

Dear @Peter Bartholomew Sir​

Very Nice above Shared formula i Really appreciate .​

I Copy paste in another Work Sheet above given formula But Not Working . (Formula Contain Cell D13)

Can please again modify . Based on Given Drop down Selection . No Need to Required Slicer

Can Create a formula Automate Answer Table Through Drop down List Month and Employee Drop down.

We only need the relevant month and relevant employee data as per the drop-down selection, Sample Answer Screen Attached

While Copy Pasting formula to another Work Sheet What to listen to



1752256110319.png

 

Attachments

  • New Microsoft Excel Worksheet (15) (1).xlsx
    33 KB · Views: 3
Last edited:
Hi @kme. Don't write text in bold in your posts! This way you show disrespect to those helping you. No one will help you like this again if you don't respect others! Help on this forum, as on other forums, is provided at will and opportunity on a free of charge basis.
For example, I don’t want to help you anymore.
 
Back
Top