Calculate age in days at end of each month

Been searching for several days and can’t seem to get this calculation.
I know that in google sheets this returns days between today and end of month

=EOMONTH( TODAY() , 0) - TODAY()

I’m trying to have a conditional format
if something is 50 days old today but will be 75 days or older ——RED
Second criteria if it was purchased from a specific vendor mark YEllow at 60 days instead of 75

0 4 522
4 REPLIES 4

@Roger_Dalomba
For the 1st condition:

AND(
	TODAY() - [YourDateColumn] = 50,
	EOMONTH(TODAY(),0) - [YourDateColumn] >= 75
)

For the 2nd condition:

AND(
	TODAY() - [YourDateColumn] = 60,
	[Vendor] = "Some Vendor Name"
)

2X_5_5920d3fad6432ba368187a3dd07b1b4128f5de4c.png )

@Roger_Dalomba
What type is your [AGE] column? Number?? If so, you cannot subtract a number from a date and return a number value

Yes it is a number … so I have to subtract from
(Date in) date I received the item?
Will try thx

Top Labels in this Space