-
Re: How to identify the first date and last date from another smartsheet column?
You can use a simple Max and Min type function if you are just looking for Latest and Earliest dates! Example: = MAX([Column End Date]:[Column End Date]) will pull the latest end date.1 · -
Re: Where am I going wrong in this SUMIF formula?
Hi Kelly, You have the sum range and the criterion range flipped, try this. =SUMIF({Shell Projects - High Level Tracker Owner}, Wholesaler@row, {Shell Projects - High Level Tracker CP} )1 · -
Re: Date difference calculation
I think the issue here is that your formula is written in reverse. Try this: =IF(ISBLANK([Closed Date]@row), NETDAYS(TODAY()-[Opened Date]@row), [Closed Date]@row-[Opened Date]@row)1 ·