Mar 27 2024 05:46 AM
Hi Team,
I need your help to prepare a data which will include today's date and compare the creation date for total number of days. After getting the total number of days I need to show them in a format where User A has total count is last 3 days, last 5 days, last 7 days, last 10 days and so on... At the end I need to show the total count in every column. A basic manual table I have pasted below to give an overview of the look of the table will be require, could someone please help me to apply a formula and tell me how to done the job right?
Assigned_Group | <1 Days | <2 Days | >5 Days | > 7 Days | >15 Days | >30 Days | >60 Days | >90 Days | >180 Days | Grand Total |
Mohit | 1 | 3 | 6 | 10 | ||||||
Suresh | 2 | 2 | 4 | |||||||
Deepak | -- | -- | -- | -- | -- | -- | -- | -- | 1 | 1 |
#excel
Mar 27 2024 07:23 AM
You might help us to help you by showing what your data look like.
Mar 27 2024 08:52 AM
To create a table that calculates the total count of days for each assigned group based on the creation date, and then categorizes them into different time frames (e.g., last 3 days, last 5 days, etc.), you can follow these steps:
Here's how you can apply the formulas:
Assuming your data starts from cell A1 with headers "Assigned_Group" in column A and "Creation_Date" in column B, and the first row of data starts from row 2:
=TODAY() - B2
=IF(C2 < 1, 1, "")
=IF(AND(C2 >= 1, C2 < 2), 1, "")
=IF(C2 > 5, 1, "")
=COUNTIFS(A:A, "Mohit", D:D, 1)
Once you set up these formulas, the table will dynamically update whenever the creation date or today's date changes, providing you with the count of days for each assigned group in different time frames.The text was created with the help of AI.
If this is not what you are looking for, please provide additional information as Mr. Hans Vogelaar recommended.
My answers are voluntary and without guarantee!
Hope this will help you.
Was the answer useful? Mark as best response and like it!
This will help all forum participants.