Is there a way of using a row level formula to filter down to opportunities to the end of the month?

1.6k views Asked by At

I am trying to use a row level formula to filter down a series of opportunities to ones which occur at the end of the month, or within 2/3 days of the end of the month.

I have the following columns: "Opp name", offer submission date, "closed date"

Purpose of the exercise: I would like to identify opportunities which have an offer submission date at the end of the month. Currently, I have filtered the report to last month.

What I would like to do: I would like to filter the data down using a row level formula, so that I have all the opportunities which have an offer submission date around the end of the last month NOT just in the last month.

Please could someone advise me as to the syntax for such a row level formula. Huge thanks in advance!

**** Edit****

This is now what my formula looks like.

enter image description here

And the results are:

enter image description here

As you can see, the records which should be highlighted as 1 (and therefore 'True') aren't. Any help would be hugely appreciated.

1

There are 1 answers

4
eyescream On

My formula runs on Case Last Modified Date, you'll have to change field name. And mine's "DateTime" really, if your custom field is Date only - you don't need DATEVALUE().

For illustration let's say anything after 20th is month's end

IF(DAY(DATEVALUE(LAST_UPDATE)) > 20, 1, 0)

enter image description here

Looks promising:

enter image description here

You can decide to make it a Text formula or maybe really just display the day of the month and filter / sort by it... Doesn't matter much, all yours?