Sign in to join the conversation:
I'm making a project schedule for our construction company.
I would like to be able to have a filter that only shows "Start Date" that is equal to this week or this month.
Is that possible?
Hi,
Yes, it is.
Try this.
Edit: Updated with a simpler solution.
My example is for the current week, but you could set it up for the month as well.
Ad a weekcheck column (Checkbox) and add the formula below.
=IF(WEEKNUMBER(Start@row) = WEEKNUMBER(TODAY()); 1)
The same version but with the below changes for your and others convenience.
=IF(WEEKNUMBER(Start@row) = WEEKNUMBER(TODAY()), 1)Depending on your country you’ll need to exchange the comma to a period and the semi-colon to a comma.
To use the filter for the current week, you'd choose to filter by the Weekcheck column and where the checkbox is checked.
Would that work?
Have a fantastic week!
Best,
Andrée Starå
Workflow Consultant @ Get Done Consulting
Thank you. Sorry I'm just not good when it comes to formulas.
I created the new Checkbox column. In that same column I put the formula below
=IF(WEEKNUMBER([Start Date]1) = WEEKNUMBER(TODAY()), 1)
Nothing seems to be happening. Shouldn't the checkbox be "checked"?
Happy to help!
It looks correct. Try to delete the last parenthesis so that Smartsheet can try to run and fix it automatically. And if that doesn't work, you could try to select the Start Date cell again.
Did it work?
Andrée
GOT IT! Thanks
One more. I have projects with columns for "Contract Date". I was looking for a way to use conditionally formatting to make the row RED color is "Contract Date" older than 6 months so I could highlight old jobs.
Doesn't seem like you can do that with conditionally formatting alone.
Great!
I'm always happy to help!
Yes, you can. If you choose a date column in "Set Condition" you can select "is in the last (days)" and there you could set something like 180 days.
That seems like it would work for dates from today back to 180 days. But what about 180 or greater? Don't want to set condition with before 180 days.
That will work as well with the "is in the next (days)" selection.
When I use
"Is in the last" (days) and make it 180 days It's highlighting everything from today back 180 days.
"is in the next" (days) and make it 180 no condition are set because that's the future
Can't get it to highlight dates that are greater than 180 days in the past
My mistake!
You would probably need a helper column for that to work
I'll get back to you if I come to think about anything else.
Sorry about the confusion.
You could use another checkbox column with
=IF([Contract Date]@row < TODAY(-180), 1)
This will flag if it is older than 180 days. You could then base your conditional formatting off of that.
Yes, of course. I was so focused on the conditional part that I missed that.
Perfect. Thanks guys
I do the same thing too sometimes. Lol
Hi, I am trying to use a formula to tick a box in Sheet 1 if the following conditions are true: The email at row (Text Contact) in Sheet 1 matches the Email in the deployment sheet (Email Deployment) and the Event in the deployment sheet (Event Deployment) is equal to "Event Name". The event column in the deployment sheet…
I am working on a formula to pull the row data from column "A", based on the criteria for row "B" and "C". The criteria is to look for the highest value in Column "B" and the same row "is not blank" in Column "C". In short index the row in column A, with the highest value in column B, that is also not blank in column C. I…
I am trying to write a formula that says the if the end date is before today that it selects the "Late" option out of the drop down in Status. I got most of the way there but keep getting an error. HELP