-
Re: Data Point on Dashboard that updates based on current month
@Randy Van Winkle Try this instead: =COUNTIFS([Month #]:[Month #], @cell = MONTH(TODAY()), Status:Status, "Completed") Hope it works out.1 · -
Re: "Invalid Data Type" Error - Need Formula Help!
@Ashley Pierce Try using the iferror: =IFERROR(DATE(YEAR([Column2]@row) + 3, MONTH([Column2]@row), DAY([Column2]@row)), "")1 · -
Re: USing IF and ISBLANK with two columns
What about something like this? =IF(NOT(ISBLANK([Closure Date]@row)), " ", IF([Committed Closure Date]@row - TODAY() > 10, "Green", IF(AND([Committed Closure Date]@row - TODAY(…1 ·