Connect with peers, share your expertise, and inspire what’s next in Smartsheet — from proven practices to practical how-to insights from fellow users and product experts.
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 all, I am trying to build out a formula that will return "True" if the CIF #@row can be found above it in the same column (CIF #) AND the Days Since Created is between 30 - 365 days. All of the formulas I have tried have only gotten me so far as the "AND". Adding in the dates screws it up. The goal is to determine if…
I am getting a lot of REF errors for my predecessors and I can't figure out why. At first I thought I might have REF for predecessors to predecessors but that's not the case. When I export the file into Excel it shows the IDs in the place where it shows REF in SS. Each time I refresh the file I feel like different values…
I am trying to create a sheet summary, where the field is a formula that relies on a contact card within a column. However, it keeps returning a result of "#NO MATCH". The columns involved are, 1:) Priority (symbol column) for Up, Unchanged, and Down, and 2:) Contact Card column. I am trying to get a sheet summary formula…