Share via

Unique and Filter Formula Help

Anonymous
2024-08-01T14:05:02+00:00

This is my formula I have in Column M:

=IFERROR(Sum(--(Unique(Filter([Name], ([@[Retraining Date)]>=Date(Year(Today()),1,1))*([@[Retraining Date)]<=Date(Year(Today()),1,31))*([@Status]="Compliant)))<>"")),"")

I would like to modify it to include the following:

If a cell in the FREQUENCY Column contains "One Time" and the Training Date column contains a date from 1/1/2024 to 01/31/2024

Microsoft 365 and Office | Excel | For business | Windows

Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.

0 comments No comments

Answer accepted by question author

Anonymous
2024-08-01T15:33:54+00:00

You are welcome:) You may also give feedback on it.

Was this answer helpful?

0 comments No comments

2 additional answers

Sort by: Most helpful
  1. Anonymous
    2024-08-01T15:26:13+00:00

    Thank you it works :-)

    Was this answer helpful?

    0 comments No comments
  2. Anonymous
    2024-08-01T15:22:13+00:00

    Try this one
    =IFERROR(Sum(--(Unique(Filter([Name],([@[Training Date)]>=Date(Year(Today()),1,1))*([@[Training Date)]<=Date(Year(Today()),1,31))*([@[FREQUENCY)]="One Time")*([@[Retraining Date)]>=Date(Year(Today()),1,1))*([@[Retraining Date)]<=Date(Year(Today()),1,31))*([@Status]="Compliant)))<>"")),"")

    Was this answer helpful?

    0 comments No comments