A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data
You are welcome:) You may also give feedback on it.
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
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
A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data
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.
Answer accepted by question author
Thank you it works :-)
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)))<>"")),"")